-
Notifications
You must be signed in to change notification settings - Fork 6
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
Liquibase OFF
log level gets logged as ERROR
#20
Comments
Hi @chwatts. Thanks for the report. It's not how I would have coded the logging in AnalyticsArgs but 🤷♂️. Definitely uncovered a bug. I've published 5.1.0-SNAPSHOT to the Maven Central Snapshot repository if you want to try it out to see if it fixes your problem. I have PR #21 set up to fix this issue. |
hi @mattbertolini Thanks so much for the quick fix here! I can't figure out how to download the snapshot, but looking at your PR changes and test, it looks like it will definitely fix it. |
@chwatts I've pushed version 5.1.0 to Maven Central. It will probably take an hour or two for it to show up in the repo. Let me know if this fixes the issue. |
@mattbertolini This has indeed fixed the issue. Amazing service, thanks so much for being so quick to respond and fix. It is very much appreciated. |
@chwatts Happy to help! Glad it fixed your issue. |
This has come to light with the new Liquibase release where analytics are being sent to them. If you turn this off, then this line gets logged:
From the class
AnalyticsArgs
. LOG_LEVEL is by defaultOFF
. OFFintValue
is MAX_INT, which when processed by this logic:Results in an error log, which is not what you want. (TRACE_THRESHOLD is 300).
The text was updated successfully, but these errors were encountered: