libobs, UI: Do not log redundant warnings

Reduces log file clutter by not logging certain warning messages that
were already safe/normal/expected failures.
This commit is contained in:
jp9000
2019-01-12 16:50:55 -08:00
parent 455187e6e4
commit 8f106dc3c1
3 changed files with 8 additions and 2 deletions

View File

@@ -242,7 +242,7 @@ try {
return true;
} catch (string text) {
blog(LOG_WARNING, "%s: %s", __FUNCTION__, text.c_str());
blog(LOG_DEBUG, "%s: %s", __FUNCTION__, text.c_str());
return false;
}