Skip to content

Commit 823dd86

Browse files
committed
fix(logging): prevent excessive MySQL warning logs
Lower MySQL warning log level from INFO to DEBUG to reduce log spam while maintaining debugging visibility. Closes #311
1 parent b2ad77f commit 823dd86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ReactorNettyClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ private static void resetSequence(Connection connection) {
272272
@Override
273273
public String toString() {
274274
return String.format("ReactorNettyClient(%s){connectionId=%d}",
275-
isConnected()? "activating" : "closing or closed", context.getConnectionId());
275+
isConnected() ? "activating" : "closing or closed", context.getConnectionId());
276276
}
277277

278278
private void emitNextRequest(ClientMessage request) {

0 commit comments

Comments
 (0)