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
Currently I log calls eagerly evaluate their parameters, causing wasted work for log calls to levels below the currently enabled log level. This is especially a problem if we compute many large expensive strings just to throw them away.
We can refactor the logger to lazily evaluate its parameters instead:
Currently I log calls eagerly evaluate their parameters, causing wasted work for log calls to levels below the currently enabled log level. This is especially a problem if we compute many large expensive strings just to throw them away.
We can refactor the logger to lazily evaluate its parameters instead:
refactor the logger to lazily compute the string to log, ideally we can simply
The text was updated successfully, but these errors were encountered: