* Adds a notice issue * @param message notice issue message. Errors will be converted to string via toString() * @param properties optional properties to add to the annotation.
(message, properties = {})
| 342 | * @param properties optional properties to add to the annotation. |
| 343 | */ |
| 344 | function notice(message, properties = {}) { |
| 345 | command_1.issueCommand('notice', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message); |
| 346 | } |
| 347 | exports.notice = notice; |
| 348 | /** |
| 349 | * Writes info to log with console.log. |
nothing calls this directly
no test coverage detected
searching dependent graphs…