summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/server/events/SetMetadata.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/events/SetMetadata.cpp b/src/server/events/SetMetadata.cpp
index 842d7cdf..7e9c531d 100644
--- a/src/server/events/SetMetadata.cpp
+++ b/src/server/events/SetMetadata.cpp
@@ -75,20 +75,20 @@ SetMetadata::SetMetadata(Engine& engine,
}
/*
- LOG(info) << "Patch " << subject << " : " << context << " {" << endl;
+ LOG(Raul::info) << "Patch " << subject << " : " << context << " {" << std::endl;
typedef Resource::Properties::const_iterator iterator;
for (iterator i = properties.begin(); i != properties.end(); ++i) {
- LOG(info) << " + " << i->first
- << " = " << engine.world()->forge().str(i->second)
- << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << endl;
+ LOG(Raul::info) << " + " << i->first
+ << " = " << engine.world()->forge().str(i->second)
+ << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << std::endl;
}
typedef Resource::Properties::const_iterator iterator;
for (iterator i = remove.begin(); i != remove.end(); ++i) {
- LOG(info) << " - " << i->first
+ LOG(Raul::info) << " - " << i->first
<< " = " << engine.world()->forge().str(i->second)
- << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << endl;
+ << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << std::endl;
}
- LOG(info) << "}" << endl;
+ LOG(Raul::info) << "}" << std::endl;
*/
}