Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
fix(logs): update log file name to "app.log" instead of "lsc.log"
Browse files Browse the repository at this point in the history
  • Loading branch information
KalleV committed Nov 1, 2018
1 parent 2f0e680 commit 7f89f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/log/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class Logger extends winston.Logger {
mkdirSync(options.logDirectory);

transports.push(new winston.transports.File({
filename: path.resolve(options.logDirectory, 'lsc.log'),
filename: path.resolve(options.logDirectory, 'app.log'),
timestamp: true,
json: false,
maxfiles: 5,
Expand Down

0 comments on commit 7f89f7a

Please sign in to comment.