summaryrefslogtreecommitdiffstats
path: root/src/shared/Store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Store.cpp')
-rw-r--r--src/shared/Store.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp
index 73b2b7b7..f1c82360 100644
--- a/src/shared/Store.cpp
+++ b/src/shared/Store.cpp
@@ -16,6 +16,7 @@
*/
#include <sstream>
+#include "raul/log.hpp"
#include "raul/PathTable.hpp"
#include "raul/TableImpl.hpp"
#include "common/interface/Node.hpp"
@@ -33,7 +34,7 @@ void
Store::add(GraphObject* o)
{
if (find(o->path()) != end()) {
- cerr << "[Store] ERROR: Attempt to add duplicate object " << o->path() << endl;
+ error << "[Store] Attempt to add duplicate object " << o->path() << endl;
return;
}