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 May 5, 2022. It is now read-only.
All the debug statements in the stream library use string interpolation with backticks. This means that the objects are serialized for logging before they're passed to debug, and may not be printed if debug is turned off. We should make sure that these unnecessary string operations don't happen unless debug is actually enabled.
The text was updated successfully, but these errors were encountered:
I think ilp-logger supports formatting e.g. %o. Using that would prevent JSON.stringifys when logging is disabled, as well as extra string interpolation.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
All the debug statements in the stream library use string interpolation with backticks. This means that the objects are serialized for logging before they're passed to debug, and may not be printed if debug is turned off. We should make sure that these unnecessary string operations don't happen unless debug is actually enabled.
The text was updated successfully, but these errors were encountered: