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
::arataga::logging::wrap_logging(
direct_logging_mode,
spdlog::level::debug,
[&]( auto & logger, auto level ) {...} );
::arataga::logging::wrap_logging(
direct_logging_mode,
spdlog::level::trace,
[&]( auto & logger, auto level ) {...} );
can be replaced by something like:
::arataga::logging::direct_mode::debug(
[&]( auto & logger, auto level ) {...} );
::arataga::logging::direct_mode::trace(
[&]( auto & logger, auto level ) {...} );
The text was updated successfully, but these errors were encountered:
It seems that fragment like those:
can be replaced by something like:
The text was updated successfully, but these errors were encountered: