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
commit 2620f73b8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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());
}