Skip to content

Commit

Permalink
Merge pull request #88 from wix/fix-undefined-var
Browse files Browse the repository at this point in the history
fix: ReferenceError: loglevel is not defined
  • Loading branch information
rotemmiz authored Feb 23, 2017
2 parents 75c9a57 + 9bf60f2 commit f3c8d54
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 f3c8d54

Please sign in to comment.