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:
parent
7117d115e7
commit
4d9038c7c3
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue