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:
Jacopo Mondi 2019-01-15 09:44:01 +01:00
parent fd0339da1a
commit f1caaaf387
2 changed files with 3 additions and 3 deletions

View file

@ -252,8 +252,8 @@ MediaDevice *DeviceEnumerator::search(const DeviceMatch &dm) const
continue; continue;
if (dm.match(dev)) { if (dm.match(dev)) {
LOG(Debug) << "Successful match for media device " LOG(Debug) << "Successful match for media device \""
<< dev->driver(); << dev->driver() << "\"";
return dev; return dev;
} }
} }

View file

@ -116,7 +116,7 @@ void PipelineHandlerFactory::registerType(const std::string &name,
return; return;
} }
LOG(Debug) << "Registered pipeline handler: \"" << name << "\""; LOG(Debug) << "Registered pipeline handler \"" << name << "\"";
factories[name] = factory; factories[name] = factory;
} }