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
{{ message }}
This repository was archived by the owner on Feb 1, 2023. It is now read-only.
16:07:31.315 DEBUG bitswap: %!s(int=1) keys in bitswap wantlist workers.go:188
Apparently you are using log.Debug(n, " keys in bitswap wantlist") to print this message (which btw is valid according to the interface), it's however not implemented correctly by go-logger, which uses %s as the format string for all parameters.
My initial idea was that this should be fixed in the logger, but changing it from %s to %v might have cascading adverse effects on the entire IPFS codebase, so maybe it's better to roll with the fault and maybe document the issue?
Just saw this in my IPFS logs:
Apparently you are using
log.Debug(n, " keys in bitswap wantlist")
to print this message (which btw is valid according to the interface), it's however not implemented correctly bygo-logger
, which uses%s
as the format string for all parameters.My initial idea was that this should be fixed in the logger, but changing it from
%s
to%v
might have cascading adverse effects on the entire IPFS codebase, so maybe it's better to roll with the fault and maybe document the issue?cc @whyrusleeping
The text was updated successfully, but these errors were encountered: