diff --git a/src/logging/Sentry.cpp b/src/logging/Sentry.cpp index 46a283c1..6233c31e 100644 --- a/src/logging/Sentry.cpp +++ b/src/logging/Sentry.cpp @@ -173,12 +173,16 @@ namespace spdlog::sinks case spdlog::level::info: case spdlog::level::off: // For lower levels, do nothing for now. But you can easily handle them here. + break; default: break; } } - template void sentry_api_sink::flush_() {} + template void sentry_api_sink::flush_() + { + // Sentry library handles all operations, so no need to flush + } template class sentry_api_sink; template class sentry_api_sink;