Skip to content

Commit

Permalink
change some logging from "info" to "debug" level
Browse files Browse the repository at this point in the history
  • Loading branch information
crcastle committed Sep 13, 2011
1 parent 1cd71c3 commit 4539031
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/keg.io/keg.io.js
Expand Up @@ -147,9 +147,9 @@ Keg.prototype.init = function(logger,
}); });


// DEBUGGING JUNK // DEBUGGING JUNK
this.arduino.addListener('drain', function() { self.logger.info("****DRAIN EVENT FROM WRITE STREAM") }); this.arduino.addListener('drain', function() { self.logger.debug("****DRAIN EVENT FROM WRITE STREAM") });
this.arduino.addListener('close', function() { self.logger.info("****CLOSE EVENT FROM WRITE STREAM") }); this.arduino.addListener('close', function() { self.logger.debug("****CLOSE EVENT FROM WRITE STREAM") });
this.arduino.addListener('pipe', function(src) { self.logger.info("****PIPE EVENT FROM WRITE STREAM") }); this.arduino.addListener('pipe', function(src) { self.logger.debug("****PIPE EVENT FROM WRITE STREAM") });
// END DEBUGGING JUNK // END DEBUGGING JUNK
}; };


Expand Down

0 comments on commit 4539031

Please sign in to comment.