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
When viewing logs in which multiple workers (and/or nannies) are mixed into the same stream (for example, all tests in CI), it's often not possible to tell which worker produced a message.
Including the address of the current server in all log messages would make debugging easier in these cases.
This is probably rather tricky because:
our loggers are all per-file global variables, not associated with a particular instance
When viewing logs in which multiple workers (and/or nannies) are mixed into the same stream (for example, all tests in CI), it's often not possible to tell which worker produced a message.
Including the address of the current server in all log messages would make debugging easier in these cases.
This is probably rather tricky because:
get_workercan return the wrong worker with an async local cluster #4959One of those two things would probably need to be refactored to make this happen.