Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
Don't use log rotation as it has problem with process.exit.
Browse files Browse the repository at this point in the history
  • Loading branch information
hajoeichler committed Mar 11, 2014
1 parent d71faa9 commit ad52d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coffee/run.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ argv = require('optimist')
logger = new Logger
streams: [
{ level: 'error', stream: process.stderr }
{ level: argv.logLevel, type: 'rotating-file', period: '1d', count: 90, path: "#{argv.logDir}/sphere-order-distribution-#{argv.projectKey}.log" }
{ level: argv.logLevel, path: "#{argv.logDir}/sphere-order-distribution-#{argv.projectKey}.log" }
]

options =
Expand Down

0 comments on commit ad52d41

Please sign in to comment.