fix led parser log level

This commit is contained in:
jane 2020-11-21 17:30:40 -05:00
parent 0fd1105071
commit c3b6849c21
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import Logger, { levels } from '../logger.js';
import { filename } from '../utils.js';
const log = new Logger(filename(import.meta.url), levels.DEBUG);
const log = new Logger(filename(import.meta.url), global.ctx.log_level);
class Target {
constructor(channel) {