Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ OTHER DEALINGS IN THE SOFTWARE.
*/

var path = require('path'),
sys = require('sys'),
sys = require('util'),
fs = require('fs');

var makeArray = function(nonarray) {
return Array.prototype.slice.call(nonarray);
return Array.prototype.slice.call(nonarray);
};

// Create a new instance of Logger, logging to the file at `log_file_path`
Expand Down