From 8ee9ed5891b5311b9a49e0e400113ad1d9a4c356 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 15 Jan 2024 14:15:24 +0100 Subject: [PATCH] Cleanup --- dist/index.js | 1 - src/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 0a1acc3..59f809c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12150,7 +12150,6 @@ function tailLog(daemonDir) { const log = new Tail_1(path$1.join(daemonDir, 'daemon.log')); coreExports.debug(`tailing daemon.log...`); log.on('line', (line) => { - //core.debug(`got a log line`); coreExports.info(line); }); return log; diff --git a/src/index.ts b/src/index.ts index e767125..94e6178 100644 --- a/src/index.ts +++ b/src/index.ts @@ -76,7 +76,6 @@ function tailLog(daemonDir) { const log = new Tail(path.join(daemonDir, 'daemon.log')); core.debug(`tailing daemon.log...`); log.on('line', (line) => { - //core.debug(`got a log line`); core.info(line); }); return log;