-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quiet down some logging; stop transmission reaper spam #16239
Conversation
I see you updated files related to
|
@@ -936,7 +937,7 @@ func (app *ChainlinkApplication) stop() (err error) { | |||
err = multierr.Append(err, app.profiler.Stop()) | |||
} | |||
|
|||
app.logger.Info("Exited all services") | |||
app.logger.Debugf("Closed application in %v", time.Since(shutdownStart)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this measuring something different than this line?
chainlink/core/cmd/shell_local.go
Line 345 in 2dadb61
log.Printf("Graceful shutdown time: %s", time.Since(shutdownStartTime)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't see that one. Not really, measures something very similar just without the DB close and it will appear in structured logging
dd5145b
to
2f2c362
Compare
2d072f3
to
be302b9
Compare
a0cce3d
to
6e44906
Compare
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
6e44906
to
85c9c54
Compare
13654e7
to
562412c
Compare
} | ||
|
||
t.lggr.Errorw("Failed to reap", "err", err) | ||
select { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just exit to the outer for loop here and follow ticker.C events?
Quality Gate passedIssues Measures |
Requires
Supports