libcamera: device_enumerator: Fix LOG usage
Add the DeviceEnumerator category to the last LOG() call requiring it. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
@@ -459,7 +459,8 @@ void DeviceEnumeratorUdev::udevNotify(EventNotifier *notifier)
|
||||
std::string action(udev_device_get_action(dev));
|
||||
std::string deviceNode(udev_device_get_devnode(dev));
|
||||
|
||||
LOG(Debug) << action << " device " << udev_device_get_devnode(dev);
|
||||
LOG(DeviceEnumerator, Debug)
|
||||
<< action << " device " << udev_device_get_devnode(dev);
|
||||
|
||||
if (action == "add") {
|
||||
addDevice(deviceNode);
|
||||
|
||||
Reference in New Issue
Block a user