Merge pull request #5518 from tywald/change-log-level

cubeb_sink: Change a log from INFO to DEBUG level
This commit is contained in:
Marshall Mohror 2020-08-28 13:54:36 -05:00 committed by GitHub
commit 855dc9f0fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ void CubebSink::Impl::LogCallback(char const* format, ...) {
#endif
va_end(args);
buffer.back() = '\0';
LOG_INFO(Audio_Sink, "{}", buffer.data());
LOG_DEBUG(Audio_Sink, "{}", buffer.data());
}
std::vector<std::string> ListCubebSinkDevices() {