Skip to content

Commit

Permalink
Merge pull request #226 from Nordix/arp_dynloglevel
Browse files Browse the repository at this point in the history
Add capability to set loglevel to trace during runtime
  • Loading branch information
denis-tingaikin authored Oct 14, 2024
2 parents 837f7ee + b955f98 commit 486f217
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ func main() {

log.FromContext(ctx).Infof("Config: %#v", config)

logruslogger.SetupLevelChangeOnSignal(ctx, map[os.Signal]logrus.Level{
syscall.SIGUSR1: logrus.TraceLevel,
syscall.SIGUSR2: l,
})

// ********************************************************************************
// Configure Open Telemetry
// ********************************************************************************
Expand Down

0 comments on commit 486f217

Please sign in to comment.