Closed harshpatel19 closed 9 years ago
Yep, the options is documented here. You could try :
var scribe = require('scribe')({
createDefaultConsole: false
});
var console = scribe.console({
console: {
logInConsole: false
},
logWriter: {
rootPath: 'logs'
}
});
console.log('this will be saved on file, not printed on terminal');
thanks
Is it possible to write logs just to files and not on stdout?