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
Previously, message and args would each get interpolated separately,
with a result like
wrote python info of %s at (PosixPath('/usr/bin/python3.12'),
PosixPath('/home/...f265.json')) [DEBUG via_disk_folder:153]
Now, remove the formatting placeholder from the message passed by
concrete classes. msg then becomes unnecessary; pass it in as part
of msg_args. The result is more like
wrote python info of /usr/bin/python3.12 at /home/...f265.json
[DEBUG via_disk_folder:153]
0 commit comments