-
Notifications
You must be signed in to change notification settings - Fork 883
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
[MINOR] move Pipeline stack trace to trace/debug level #6222
Conversation
Signed-off-by: Sally MacFarlane <[email protected]>
|
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.
LGTM
} else { | ||
LOG.info("Unexpected exception in pipeline. Aborting.", t); | ||
LOG.info("Unexpected exception in pipeline. Aborting."); | ||
LOG.debug("Unexpected exception in pipeline. Aborting.", t); |
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.
nit: little annoying most of the log message except for the throwable will be logged twice once at info and also at trace level. But it's only a short message and at trace, you expect a lot of noise so it's probably fine.
Signed-off-by: Sally MacFarlane <[email protected]> Signed-off-by: Justin Florentine <[email protected]>
Signed-off-by: Sally MacFarlane <[email protected]>
Signed-off-by: Sally MacFarlane <[email protected]> Signed-off-by: Justin Florentine <[email protected]>
Signed-off-by: Sally MacFarlane <[email protected]> Signed-off-by: Gabriel Fukushima <[email protected]>
log a message only at info
log stack trace at debug/trace depending on type of exception
fixes #5533