-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making Logger unwind safe #111
Comments
I need to do some homework on uniwind safety. IIRC, it's about adding a marker trait here and there if types are indeed unwind safe. I think all serializable key&values that slog supports should be. Thank you for reporting it and please remind me in case I don't get back to you until the end of the weekend. |
So they way I understand it, I'll have to add I'm in the middle of some other stuff, but let's keep it open. |
This will be fixed in |
Closing. Feel free to reopen in case of troubles. |
Right now trying to use a Logger within a
std::panic::catch_unwind
block fails to compile withI can use
AssertUnwindSafe
, but I'm not sure if that's actually true.Is there currently a way to use slog safely in this case, or if not, could there be?
The text was updated successfully, but these errors were encountered: