-
Notifications
You must be signed in to change notification settings - Fork 1.1k
test(bqjdbc): add e2e otel test and code refinements #13226
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
base: jdbc/feature-branch-otel
Are you sure you want to change the base?
Changes from all commits
6405ccd
9780ed9
8103651
dba7f5a
172dd9d
02ca2c5
701d549
3e8ca63
1ffc421
69b119b
7349805
aef912c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,9 @@ | |
| public class OpenTelemetryJulHandler extends Handler { | ||
| private static final Pattern UNSAFE_LOG_CHARACTERS = Pattern.compile("[^a-zA-Z0-9./_-]"); | ||
|
|
||
| public OpenTelemetryJulHandler() {} | ||
| public OpenTelemetryJulHandler() { | ||
| setLevel(Level.ALL); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this intentional? I don't think we should alter log level from non-test code
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, so this does not modify or alter any global logging levels. By default, Java Handler thresholds default to Overriding it here just ensures log filtering is done strictly at the Logger level and not here |
||
| } | ||
|
|
||
| @Override | ||
| public void publish(LogRecord record) { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.