Skip to content
Snippets Groups Projects
Commit 2864d80e authored by Rainer Kartmann's avatar Rainer Kartmann Committed by ARMAR-7a
Browse files

Change verbose to debug

parent d8291492
No related branches found
No related tags found
1 merge request!380ARMAR-7 Unit
......@@ -83,7 +83,7 @@ namespace armarx
{
ARMARX_TRACE;
ARMARX_CHECK(isInitialized);
ARMARX_VERBOSE << VAROUT(entries.size());
ARMARX_DEBUG << VAROUT(entries.size());
const size_t writePosition_local = writePosition.load(); // copy to prevent external changes
if (writePosition_local - onePastLoggingReadPosition >= numEntries)
{
......@@ -107,7 +107,7 @@ namespace armarx
}
//consume all
const std::size_t num = writePosition_local - onePastLoggingReadPosition;
ARMARX_VERBOSE << num << " new entries to be treated";
ARMARX_DEBUG << num << " new entries to be treated";
for (std::size_t offset = 0; onePastLoggingReadPosition < writePosition_local;
++onePastLoggingReadPosition, ++offset)
{
......
......@@ -114,7 +114,7 @@ namespace armarx::introspection
const std::string& name)
{
ARMARX_TRACE;
ARMARX_CHECK_EQUAL(0, entries.count(name));
ARMARX_CHECK_EQUAL(entries.count(name), 0) << name;
entries.add(name, Entry(name, ptr));
return entries.at(name);
}
......
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