Set log level to debug in camera listing

This commit is contained in:
Eduardo Ramos 2024-11-28 20:20:16 +01:00
parent b7eb36961f
commit 7dc9d94ff9
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class NokhwaDriver implements WebcamDriver {
final int devicesCount = lib.cnokhwa_devices_count();
LOG.info("Available devices: {}", devicesCount);
LOG.debug("Available devices: {}", devicesCount);
if (devicesCount < 1) {
return list;
@ -69,7 +69,7 @@ public class NokhwaDriver implements WebcamDriver {
}
}
LOG.info("Found camera {} (id {}) with available formats: {}", name, uniqueId, availableFormats);
LOG.debug("Found camera {} (id {}) with available formats: {}", name, uniqueId, availableFormats);
final NokhwaVideoDevice device = new NokhwaVideoDevice(devIndex, uniqueId, name, resolutions, maxFps);
if (device.isValid()) {