From 4d9038c7c3544bce061794f48580d7da9bddfe24 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Thu, 14 Mar 2024 00:19:02 +0000 Subject: [PATCH] Cubeb: change log level from NOTICE to INFO Cubeb logs a message at CUBEB_LOG_NORMAL verbosity every time you start or stop a stream which can get a bit annoying when using frame advance at Dolphin's default verbosity. --- Source/Core/AudioCommon/CubebUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/CubebUtils.cpp b/Source/Core/AudioCommon/CubebUtils.cpp index 766a5c3b83..710b68ca93 100644 --- a/Source/Core/AudioCommon/CubebUtils.cpp +++ b/Source/Core/AudioCommon/CubebUtils.cpp @@ -36,7 +36,7 @@ static void LogCallback(const char* format, ...) const std::string message = StringFromFormatV(adapted_format.c_str(), args); va_end(args); - instance->LogWithFullPath(Common::Log::LogLevel::LNOTICE, log_type, filename, lineno, + instance->LogWithFullPath(Common::Log::LogLevel::LINFO, log_type, filename, lineno, message.c_str()); }