libobs: Use LOG_DEBUG for null pointer checks

This commit is contained in:
jp9000
2015-10-19 00:53:21 -07:00
parent 6861eaabaf
commit d3f9cdb8c8

View File

@@ -55,7 +55,7 @@ static inline bool obs_object_valid(const void *obj, const char *f,
const char *t)
{
if (!obj) {
blog(LOG_WARNING, "%s: Null '%s' parameter", f, t);
blog(LOG_DEBUG, "%s: Null '%s' parameter", f, t);
return false;
}