From c34e09d33a6d81e1bbe818a8e652e0c60de50982 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Sat, 27 Apr 2019 02:22:06 +0200 Subject: libcamera: v4l2_device: Prefix V4L2 direction in log messages The V4L2Device will use the same deviceNode for two directions in the case of an M2M device. Add the direction to identify the queue direction on each instance. Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham --- src/libcamera/v4l2_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libcamera') diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp index a6e9ca24..a2194416 100644 --- a/src/libcamera/v4l2_device.cpp +++ b/src/libcamera/v4l2_device.cpp @@ -415,7 +415,7 @@ void V4L2Device::close() std::string V4L2Device::logPrefix() const { - return deviceNode_; + return deviceNode_ + (V4L2_TYPE_IS_OUTPUT(bufferType_) ? "[out]" : "[cap]"); } /** -- cgit v1.2.1