Skip to content

Commit fde574a

Browse files
committed
Update codeql.ts
1 parent 3b632c3 commit fde574a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/codeql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ function getCodeQLForCmd(cmd: string): CodeQL {
236236
const options = {};
237237
options.listeners = {
238238
stdout: (data: Buffer) => {
239-
core.debug(data.toString());
239+
core.debug("Debug" + data.toString());
240240
},
241241
stderr: (data: Buffer) => {
242-
core.error(data.toString());
242+
core.error("Error occured" + data.toString());
243243
}
244244
};
245245
await exec.exec(cmd, [

0 commit comments

Comments
 (0)