Skip to content

Commit

Permalink
debug message updated
Browse files Browse the repository at this point in the history
  • Loading branch information
remibettan committed Aug 17, 2022
1 parent c1cdd08 commit 5413632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/linux/backend-v4l2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ namespace librealsense

if (buf.flags & V4L2_BUF_FLAG_ERROR)
{
LOG_DEBUG_V4L("VIDEO - VIDIOC_DQBUF flags with flag = " << std::hex << buf.flags <<", index = " << std::dec << buf.index << " for fd " << _fd << " seq " << buf.sequence);
LOG_DEBUG_V4L("VIDEO - buffer dequeued with error = " << std::hex << buf.flags <<", index = " << std::dec << buf.index << " for fd " << _fd << " seq " << buf.sequence);
}
else
{
Expand Down Expand Up @@ -2183,7 +2183,7 @@ namespace librealsense

if (buf.flags & V4L2_BUF_FLAG_ERROR)
{
LOG_DEBUG_V4L("METADATA - VIDIOC_DQBUF flags with flag = " << std::hex << buf.flags <<", index = " << std::dec << buf.index << " for fd " << _md_fd << " seq " << buf.sequence);
LOG_DEBUG_V4L("METADATA - buffer dequeued with error flag = " << std::hex << buf.flags <<", index = " << std::dec << buf.index << " for fd " << _md_fd << " seq " << buf.sequence);
}
else
{
Expand Down

0 comments on commit 5413632

Please sign in to comment.