You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reduce parameter status change log level from WARN to DEBUG
```
String sql = "CREATE ROLE x;"
+ "CREATE ROLE y;"
+ "SET ROLE 'x';"
+ "SET ROLE 'y';"
+ "SET ROLE 'x';"
+ "SET ROLE 'y';";
PgPool.pool().withConnection(conn -> conn.query(sql).execute();
```
creates a warning for each `SET ROLE`:
```
WARN Parameter is_superuser changed to off
WARN Parameter is_superuser changed to off
WARN Parameter is_superuser changed to off
WARN Parameter is_superuser changed to off
```
Reducing the log level from WARN to DEBUG is more appropriate.
If the messages are needed they can easily be enabled by setting
PgCommandCodec log level to DEBUG in the logging configuration.
0 commit comments