Skip to content

Commit

Permalink
fix: ReferenceError: loglevel is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
doronpr authored Feb 23, 2017
1 parent 75c9a57 commit 9bf60f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detox/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const argparse = require('./utils/argparse');
const InvocationManager = require('./invoke').InvocationManager;
const configuration = require('./configuration');

log.level = loglevel = argparse.getArgValue('loglevel') || 'info';
log.level = argparse.getArgValue('loglevel') || 'info';
log.heading = 'detox';

let websocket;
Expand Down

0 comments on commit 9bf60f2

Please sign in to comment.