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
At the moment we have the ShutdownHandler type returned from logfire.configure(), which needs to have .shutdown() called at the end of the program to flush. Usually one does this at the end of main.
This won't run if the whole stack is unwound with a panic. We should probably use a guard pattern so that panics are fully exported before exiting the process.
The text was updated successfully, but these errors were encountered:
At the moment we have the
ShutdownHandler
type returned fromlogfire.configure()
, which needs to have.shutdown()
called at the end of the program to flush. Usually one does this at the end ofmain
.This won't run if the whole stack is unwound with a panic. We should probably use a guard pattern so that panics are fully exported before exiting the process.
The text was updated successfully, but these errors were encountered: