libcamera: Debug printouts fixes
Address a few issues I missed during patch review. Minor cosmetic change. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
fd0339da1a
commit
f1caaaf387
2 changed files with 3 additions and 3 deletions
|
@ -252,8 +252,8 @@ MediaDevice *DeviceEnumerator::search(const DeviceMatch &dm) const
|
|||
continue;
|
||||
|
||||
if (dm.match(dev)) {
|
||||
LOG(Debug) << "Successful match for media device "
|
||||
<< dev->driver();
|
||||
LOG(Debug) << "Successful match for media device \""
|
||||
<< dev->driver() << "\"";
|
||||
return dev;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -116,7 +116,7 @@ void PipelineHandlerFactory::registerType(const std::string &name,
|
|||
return;
|
||||
}
|
||||
|
||||
LOG(Debug) << "Registered pipeline handler: \"" << name << "\"";
|
||||
LOG(Debug) << "Registered pipeline handler \"" << name << "\"";
|
||||
factories[name] = factory;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue