-
|
I'm trying out adding a Dioxus frontend/server to an existing server application which has already called set_global_default to configure a tracing subscriber. When I spawn off Dioxus, it too tries to set the global subscriber and the server fails to start because you can only call it once. How do I stop Dioxus from trying to configure the logger? I tried disabling the default features in the dioxus dependencies and set them to
but still get the error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It actually looks like if I initialize my global subscriber first, then Dioxus won't try to register a logger. |
Beta Was this translation helpful? Give feedback.
It actually looks like if I initialize my global subscriber first, then Dioxus won't try to register a logger.