Skip to content

Commit

Permalink
v4p: changed logging levels
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Mar 9, 2024
1 parent ac0944a commit ce935c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v4p/drm.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ int us_drm_open(us_drm_s *drm, const us_device_s *dev) {

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);
Expand Down
2 changes: 1 addition & 1 deletion src/v4p/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ce935c4

Please sign in to comment.