Skip to content

Commit 685d32a

Browse files
committed
Use core#warning to log
1 parent 85535db commit 685d32a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

action-runner/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

action-runner/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export async function onMessage(ws: WebSocket, msg: any) {
9393
}
9494
console.log(`Read file from ${pth}`)
9595
} else if (json.type == "log") {
96-
console.info(json.message)
96+
core.warning(json.message)
9797
ws.send("{}")
9898
} else if (json.type == 'eval') {
9999
const expression = json.expression

0 commit comments

Comments
 (0)