Skip to content
Snippets Groups Projects
Commit f77b8a9c authored by Fabian Reister's avatar Fabian Reister
Browse files

fixing print statements

parent 4cb27def
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ namespace armarx::armem::vision::laser_scans::client
void
Writer::registerPropertyDefinitions(armarx::PropertyDefinitionsPtr& def)
{
ARMARX_DEBUG << "TransformWriter: registerPropertyDefinitions";
ARMARX_DEBUG << "LaserScansWriter: registerPropertyDefinitions";
const std::string prefix = propertyPrefix;
......@@ -30,7 +30,7 @@ namespace armarx::armem::vision::laser_scans::client
void Writer::connect()
{
// Wait for the memory to become available and add it as dependency.
ARMARX_IMPORTANT << "MappingDataWriter: Waiting for memory '"
ARMARX_IMPORTANT << "LaserScansWriter: Waiting for memory '"
<< properties.memoryName << "' ...";
auto result = component.useMemory(properties.memoryName);
if (not result.success)
......@@ -39,7 +39,7 @@ namespace armarx::armem::vision::laser_scans::client
return;
}
ARMARX_IMPORTANT << "TransformWriter: Connected to memory '"
ARMARX_IMPORTANT << "LaserScansWriter: Connected to memory '"
<< properties.memoryName;
memoryWriter.setWritingMemory(result.proxy);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment