Skip to content

Commit

Permalink
Increased max size of file to 182MB (#1027)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashk767 authored Nov 18, 2022
1 parent 351a6a8 commit 70dee8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func InitializeLogger(fileName string) {

lumberJackLogger := &lumberjack.Logger{
Filename: logFilePath,
MaxSize: 105, // Maximum Size of a log file
MaxSize: 182, // Maximum Size of a log file
MaxBackups: 52, // Maximum number of log files
MaxAge: 365, // Maximum number of days to retain olf files
}
Expand Down

0 comments on commit 70dee8f

Please sign in to comment.