Skip to content

Commit

Permalink
debug -> trace logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Nov 30, 2023
1 parent e745c4a commit 3219298
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ func (manager *LogFileManager) StartLogFileManagement(ctx context.Context) {

logrus.Debugf("Scheduling log file path creation every '%v' minutes...", volume_consts.CreateLogsWaitMinutes)
for range logFileCreatorTicker.C {
logrus.Debug("Creating log file paths...")
logrus.Trace("Creating log file paths...")
err := manager.CreateLogFiles(ctx)
if err != nil {
logrus.Errorf("An error occurred attempting to create log file paths: %v", err)
} else {
logrus.Debug("Successfully created log file paths.")
logrus.Trace("Successfully created log file paths.")
}
}
}()
Expand Down

0 comments on commit 3219298

Please sign in to comment.