yuxiqian commented on PR #3538: URL: https://github.com/apache/flink-cdc/pull/3538#issuecomment-2287697538
Hi @melin, seems the error log message you want to emit is `Handling schema request` in `SchemaRegistry`, which will be printed when an **schema lookup request** occurs. Changing it to DEBUG level is reasonable. However, the log you've just modified will be printed only once for `CreateTableEvent`s, which is significant and should not be classified to DEBUG level. Maybe the log code you want to change is ```java LOG.info("Handling evolved schema request: {}", getEvolvedSchemaRequest); ``` and ```java LOG.info("Handling original schema request: {}", getOriginalSchemaRequest); ``` in SchemaRegistry.java? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org