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.
This commit is contained in:
Tillmann Karras 2024-03-14 00:19:02 +00:00
parent 7117d115e7
commit 4d9038c7c3
1 changed files with 1 additions and 1 deletions

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