From ce935c431e0e7a184644be1834723bfaa0c1362f Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Sat, 9 Mar 2024 04:32:12 +0200 Subject: [PATCH] v4p: changed logging levels --- src/v4p/drm.c | 2 +- src/v4p/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/v4p/drm.c b/src/v4p/drm.c index e70e4f5..c0575c8 100644 --- a/src/v4p/drm.c +++ b/src/v4p/drm.c @@ -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); diff --git a/src/v4p/main.c b/src/v4p/main.c index dacd6ad..46009d1 100644 --- a/src/v4p/main.c +++ b/src/v4p/main.c @@ -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; }