-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Optimize log level #3538
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
Optimize log level #3538
Conversation
Hi @melin, seems the error log message you want to emit is However, the log you've just modified will be printed only once for Maybe the log code you want to change is LOG.info("Handling evolved schema request: {}", getEvolvedSchemaRequest); and LOG.info("Handling original schema request: {}", getOriginalSchemaRequest); in SchemaRegistry.java? |
"Unable to apply CreateTableEvent to an existing schema for table \"%s\"", | ||
event.tableId()); | ||
LOG.info("Handling schema change event: {}", event); | ||
LOG.debug("Handling schema change event: {}", event); |
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.
Seems this is not the text that floods your output log.
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.
Thanks for @melin's work, changes look reasonable to me.
This pull request has been automatically marked as stale because it has not had recent activity for 60 days. It will be closed in 30 days if no further activity occurs. |
This pull request has been closed because it has not had recent activity. You could reopen it if you try to continue your work, and anyone who are interested in it are encouraged to continue work on this pull request. |
No description provided.