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
Example scenario: I'm looking at #510 and want to look at all logs associated with all user edit and team refresh commands. Seems rather nontrivial to do without knowing a list of all the function names involved at the moment, since our current logs just have the context:
{utils.get_team_by_name():33 /app/db/utils.py}
This does not tell me very much about who called the function, or which request this event happened in, and so on.
I do this in other projects by parameterizing and propagating loggers. For example:
Example scenario: I'm looking at #510 and want to look at all logs associated with all
user edit
andteam refresh
commands. Seems rather nontrivial to do without knowing a list of all the function names involved at the moment, since our current logs just have the context:This does not tell me very much about who called the function, or which request this event happened in, and so on.
I do this in other projects by parameterizing and propagating loggers. For example:
This makes it much easier to scope down categories of events (starting at A, A including B, all 3)
The text was updated successfully, but these errors were encountered: