v4p: changed logging levels

This commit is contained in:
Maxim Devaev 2024-03-09 04:32:12 +02:00
parent ac0944ae1a
commit ce935c431e
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ error:
unplugged:
if (!run->unplugged_reported) {
_D_LOG_INFO("Display is not plugged");
_D_LOG_ERROR("Display is not plugged");
run->unplugged_reported = true;
}
us_drm_close(drm);

View File

@ -182,7 +182,7 @@ static void _main_loop(void) {
assert(drm_opened > 0);
if (atomic_load(&_g_ustreamer_online)) {
US_ONCE({ US_LOG_INFO("DRM: Online stream is active"); });
US_ONCE({ US_LOG_ERROR("DRM: Online stream is active"); });
if (us_drm_wait_for_vsync(drm) < 0) {
goto close;
}