It would be convenient to log (simple) arguments that are passed to the functions on the stack, like Go does when it dumps stack traces.
Example: seeing DoSomeJobForUser(12345), user.go:123 is way more useful than DoSomeJobForUser, user.go:123. Knowing it is actually user 12345 makes a huge difference in reproducing the problem.
It would be convenient to log (simple) arguments that are passed to the functions on the stack, like Go does when it dumps stack traces.
Example: seeing
DoSomeJobForUser(12345), user.go:123is way more useful thanDoSomeJobForUser, user.go:123. Knowing it is actually user12345makes a huge difference in reproducing the problem.