file-stream-rotator
Advanced tools
Comparing version 0.5.5 to 0.5.6
@@ -303,3 +303,7 @@ 'use strict'; | ||
if(err && err.code == "ENOENT") { | ||
fs.symlinkSync(logfileName, current) | ||
try { | ||
fs.symlinkSync(logfileName, current) | ||
} catch (e) { | ||
console.error(new Date(), "[FileStreamRotator] Could not create symlink file: ", current, ' -> ', logfileName); | ||
} | ||
} | ||
@@ -306,0 +310,0 @@ } |
{ | ||
"name": "file-stream-rotator", | ||
"version": "0.5.5", | ||
"version": "0.5.6", | ||
"description": "Automated stream rotation useful for log files", | ||
@@ -5,0 +5,0 @@ "main": "FileStreamRotator.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46214
954