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
After #111 was merged, setting the logging level by calling cass_log_set_level implied that a global tracing subscriber is set for the duration of the entire program. As the default global subscriber can be set only once, later attempts to set the logging level are ignored. Although the logging configuration should not be changed after a session is established, this limitation is too restrictive, so perhaps it is possible to avoid it by setting a default subscriber for each thread before they start an execution: https://docs.rs/tokio/latest/tokio/runtime/struct.Builder.html#method.on_thread_start
The text was updated successfully, but these errors were encountered:
After #111 was merged, setting the logging level by calling
cass_log_set_level
implied that a global tracing subscriber is set for the duration of the entire program. As the default global subscriber can be set only once, later attempts to set the logging level are ignored. Although the logging configuration should not be changed after a session is established, this limitation is too restrictive, so perhaps it is possible to avoid it by setting a default subscriber for each thread before they start an execution:https://docs.rs/tokio/latest/tokio/runtime/struct.Builder.html#method.on_thread_start
The text was updated successfully, but these errors were encountered: