Skip to content

Commit

Permalink
fix(test): use logger instead of engine.logger
Browse files Browse the repository at this point in the history
  • Loading branch information
jrainville authored and iurimatias committed Dec 20, 2018
1 parent 7811211 commit af48788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/modules/tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Test {
return callback();
}
if (!this.ipc.connected) {
this.engine.logger.error("Could not connect to Embark's IPC. Is embark running?");
this.logger.error("Could not connect to Embark's IPC. Is embark running?");
if(!this.options.inProcess) process.exit(1);
}
return this.connectToIpcNode(callback);
Expand Down

0 comments on commit af48788

Please sign in to comment.