Skip to content

Commit

Permalink
Fix log level
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Sep 28, 2020
1 parent 846784f commit b9cfd70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/task_manager/server/polling/task_poller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function createTaskPoller<T, H>({
// emit a polling event on a fixed interval
pollInterval$.pipe(
switchMap((period) => {
logger.info(`Task poller now using interval of ${period}ms`);
logger.debug(`Task poller now using interval of ${period}ms`);
return interval(period);
}),
mapTo(none)
Expand Down

0 comments on commit b9cfd70

Please sign in to comment.