mirror of https://github.com/status-im/metro.git
Fix lint warning in Logger
Summary: Fix a lint warning in the Logger. Reviewed By: davidaurelio Differential Revision: D4147924 fbshipit-source-id: cd874ebd5f67d85e54c7dc3d9435df9ad672e9fe
This commit is contained in:
parent
159c5d1afb
commit
5c47289e92
|
@ -11,17 +11,17 @@
|
||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
const chalk = require('chalk');
|
||||||
|
const os = require('os');
|
||||||
|
|
||||||
|
const {EventEmitter} = require('events');
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
ActionLogEntryData,
|
ActionLogEntryData,
|
||||||
ActionStartLogEntry,
|
ActionStartLogEntry,
|
||||||
LogEntry,
|
LogEntry,
|
||||||
} from './Types';
|
} from './Types';
|
||||||
|
|
||||||
const {EventEmitter} = require('events');
|
|
||||||
|
|
||||||
const chalk = require('chalk');
|
|
||||||
const os = require('os');
|
|
||||||
|
|
||||||
let PRINT_LOG_ENTRIES = true;
|
let PRINT_LOG_ENTRIES = true;
|
||||||
const log_session = `${os.hostname()}-${Date.now()}`;
|
const log_session = `${os.hostname()}-${Date.now()}`;
|
||||||
const eventEmitter = new EventEmitter();
|
const eventEmitter = new EventEmitter();
|
||||||
|
|
Loading…
Reference in New Issue