diff --git a/packages/core/src/core.ts b/packages/core/src/core.ts index 95dd9e8fd0..0e417a42c3 100644 --- a/packages/core/src/core.ts +++ b/packages/core/src/core.ts @@ -252,7 +252,7 @@ export function warning(message: string | Error, properties: AnnotationPropertie * @param properties optional properties to add to the annotation. */ export function notice(message: string | Error, properties: AnnotationProperties = {}): void { - issueCommand('warning', toCommandProperties(properties), message instanceof Error ? message.toString() : message) + issueCommand('notice', toCommandProperties(properties), message instanceof Error ? message.toString() : message) } /**