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
Fix formatting of log message args in verbose mode (#817)
This PR fixes the format of log message arguments. Previously, the
arguments did not show up as key values pairs, but as a single list of
args with an error message:
```
2025-05-07 14:20:41 INFO starting operation
└ ERROR: key_without_value: [operation create_table name customers columns [id name credit_card] comment <nil> constraints []]
2025-05-07 14:20:41 INFO starting operation
└ ERROR: key_without_value: [operation create_table name bills columns [id date quantity] comment <nil> constraints []]
2025-05-07 14:20:41 INFO starting operation
└ ERROR: key_without_value: [operation create_table name sellers columns [name zip description] comment <nil> constraints []]
```
0 commit comments