Skip to content

Commit

Permalink
Removed console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Nov 9, 2018
1 parent c93f0a0 commit 4c62c48
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const createHardresetHandler = (eXecutable, hardResetMethod, argv) =>
// Detaching child is useful when in Windows to let child
// live after the parent is killed
let args = (argv || []).concat([appPath]);
console.log("new args", args);
let child = spawn(eXecutable, args, {
detached: true,
stdio: 'inherit'
Expand Down Expand Up @@ -75,7 +74,6 @@ module.exports = (glob, options = {}) => {

// Preparing hard reset if electron executable is given in options
// A hard reset is only done when the main file has changed
console.log("options", options);
let eXecutable = options.electron
if (eXecutable && fs.existsSync(eXecutable)) {
chokidar.watch(mainFile).once('change', createHardresetHandler(eXecutable, options.hardResetMethod, options.argv))
Expand Down

0 comments on commit 4c62c48

Please sign in to comment.