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:
Ovidiu Viorel Iepure 2016-11-08 11:59:44 -08:00 committed by Facebook Github Bot
parent 159c5d1afb
commit 5c47289e92
1 changed files with 5 additions and 5 deletions

View File

@ -11,17 +11,17 @@
*/
'use strict';
const chalk = require('chalk');
const os = require('os');
const {EventEmitter} = require('events');
import type {
ActionLogEntryData,
ActionStartLogEntry,
LogEntry,
} from './Types';
const {EventEmitter} = require('events');
const chalk = require('chalk');
const os = require('os');
let PRINT_LOG_ENTRIES = true;
const log_session = `${os.hostname()}-${Date.now()}`;
const eventEmitter = new EventEmitter();