[Orxonox-commit 5736] r10396 - in code/branches/core7/src/libraries: core core/class util/output

landauf at orxonox.net landauf at orxonox.net
Sun Apr 26 10:24:22 CEST 2015


Author: landauf
Date: 2015-04-26 10:24:21 +0200 (Sun, 26 Apr 2015)
New Revision: 10396

Modified:
   code/branches/core7/src/libraries/core/CoreIncludes.h
   code/branches/core7/src/libraries/core/class/Identifier.cc
   code/branches/core7/src/libraries/util/output/OutputDefinitions.h
Log:
detail

Modified: code/branches/core7/src/libraries/core/CoreIncludes.h
===================================================================
--- code/branches/core7/src/libraries/core/CoreIncludes.h	2015-04-25 20:49:34 UTC (rev 10395)
+++ code/branches/core7/src/libraries/core/CoreIncludes.h	2015-04-26 08:24:21 UTC (rev 10396)
@@ -166,7 +166,6 @@
     template <class T>
     inline Identifier* registerClass(const std::string& name, Factory* factory, bool bLoadable = true)
     {
-        orxout(verbose, context::misc::factory) << "Create entry for " << name << " in Factory." << endl;
         Identifier* identifier = new ClassIdentifier<T>(name, factory, bLoadable);
         IdentifierManager::getInstance().addIdentifier(identifier);
         return identifier;

Modified: code/branches/core7/src/libraries/core/class/Identifier.cc
===================================================================
--- code/branches/core7/src/libraries/core/class/Identifier.cc	2015-04-25 20:49:34 UTC (rev 10395)
+++ code/branches/core7/src/libraries/core/class/Identifier.cc	2015-04-26 08:24:21 UTC (rev 10396)
@@ -52,6 +52,8 @@
     Identifier::Identifier(const std::string& name, Factory* factory, bool bLoadable)
         : classID_(IdentifierManager::getInstance().getUniqueClassId())
     {
+        orxout(verbose, context::identifier) << "Create identifier for " << name << endl;
+
         this->name_ = name;
         this->factory_ = factory;
         this->bLoadable_ = bLoadable;

Modified: code/branches/core7/src/libraries/util/output/OutputDefinitions.h
===================================================================
--- code/branches/core7/src/libraries/util/output/OutputDefinitions.h	2015-04-25 20:49:34 UTC (rev 10395)
+++ code/branches/core7/src/libraries/util/output/OutputDefinitions.h	2015-04-26 08:24:21 UTC (rev 10396)
@@ -169,7 +169,6 @@
             namespace misc
             {
                 REGISTER_OUTPUT_SUBCONTEXT(misc, executor);
-                REGISTER_OUTPUT_SUBCONTEXT(misc, factory);
                 REGISTER_OUTPUT_SUBCONTEXT(misc, gui);
                 REGISTER_OUTPUT_SUBCONTEXT(misc, overlays);
                 REGISTER_OUTPUT_SUBCONTEXT(misc, script);




More information about the Orxonox-commit mailing list