Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/src/core.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -244,7 +244,7 @@ export function debug(message: string): void {

/**
* Adds an error issue
* @param message error issue message. Errors will be converted to string via toString()
* @param message error issue message. error.stack will be used for Errors
* @param properties optional properties to add to the annotation.
*/
export function error(
Expand All@@ -254,7 +254,7 @@ export function error(
issueCommand(
'error',
toCommandProperties(properties),
message instanceof Error ? message.toString() : message
message instanceof Error ? message.stack : message
)
}

Expand Down