Skip to content

Commit

Permalink
(Listener) Update noop info log into debug state (#1159)
Browse files Browse the repository at this point in the history
* fix: update noop info log into debug state

* fix: update based on feedback
  • Loading branch information
nick-bisonai authored Feb 23, 2024
1 parent d4b61d8 commit eec1c2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/listener/listener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ function latestJob({
...LISTENER_JOB_SETTINGS
})
}
logger.info(logPrefix)
logger.debug(logPrefix)
} else {
logger.info(`${logPrefix} noop`)
logger.debug(`${logPrefix} noop`)
}
} catch (e) {
// Querying the latest events or passing data to [process] queue
Expand Down Expand Up @@ -301,7 +301,7 @@ function historyJob({
throw e
}

logger.info(`${logPrefix} hist`)
logger.debug(`${logPrefix} hist`)

for (const [index, event] of events.entries()) {
const outData: IProcessEventListenerJob = {
Expand Down

0 comments on commit eec1c2d

Please sign in to comment.