Merge pull request #12638 from Tilka/cubeb

Cubeb: change log level from NOTICE to INFO
This commit is contained in:
Admiral H. Curtiss
2024-03-15 02:55:28 +01:00
committed by GitHub

View File

@ -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());
}