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
In my use of AWS.jl, I would find it interesting to know what kinds of network issues we are hitting and how frequently they occur. We could support this by emitting debug logs (e.g. @debug "AWS.jl retry" reason=... or something). This wouldn't be spammy since the default console logger drops them, but it would allow setting a custom logger or changing the global log-level to surface them.
The text was updated successfully, but these errors were encountered:
549: Add debug logging messages on retry r=mattBrzezinski a=ericphanson
Closes#514
Based on #548
The logging messages are structured so the string is a human-readable summary of the message, and then the fields are more structured for later analysis, e.g. `retry::Bool`, `reason::String`, etc. Additionally, the id of the log message will be useful for aggregation.
Co-authored-by: Eric Hanson <[email protected]>
Co-authored-by: Matt Brzezinski <[email protected]>
549: Add debug logging messages on retry r=mattBrzezinski a=ericphanson
Closes#514
Based on #548
The logging messages are structured so the string is a human-readable summary of the message, and then the fields are more structured for later analysis, e.g. `retry::Bool`, `reason::String`, etc. Additionally, the id of the log message will be useful for aggregation.
Co-authored-by: Eric Hanson <[email protected]>
Co-authored-by: Matt Brzezinski <[email protected]>
In my use of AWS.jl, I would find it interesting to know what kinds of network issues we are hitting and how frequently they occur. We could support this by emitting debug logs (e.g.
@debug "AWS.jl retry" reason=...
or something). This wouldn't be spammy since the default console logger drops them, but it would allow setting a custom logger or changing the global log-level to surface them.The text was updated successfully, but these errors were encountered: