Changeset 8835 for code/branches/output/src/libraries/core
- Timestamp:
- Aug 12, 2011, 12:48:23 AM (13 years ago)
- Location:
- code/branches/output/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/ClassFactory.h
r8806 r8835 73 73 ClassFactory(const std::string& name, bool bLoadable = true) 74 74 { 75 orxout(verbose, context:: identifier) << "Create entry for " << name << " in Factory." << endl;75 orxout(verbose, context::misc::factory) << "Create entry for " << name << " in Factory." << endl; 76 76 ClassIdentifier<T>::getIdentifier(name)->addFactory(this); 77 77 ClassIdentifier<T>::getIdentifier()->setLoadable(bLoadable); -
code/branches/output/src/libraries/core/command/Executor.cc
r8806 r8835 108 108 } 109 109 110 orxout(verbose, context:: executor) << "Executor::parse: \"" << arguments.join(delimiter) << "\" -> " << argCount << " arguments: " << arg[0] << " / " << arg[1] << " / " << arg[2] << " / " << arg[3] << " / " << arg[4] << endl;110 orxout(verbose, context::misc::executor) << "Executor::parse: \"" << arguments.join(delimiter) << "\" -> " << argCount << " arguments: " << arg[0] << " / " << arg[1] << " / " << arg[2] << " / " << arg[3] << " / " << arg[4] << endl; 111 111 112 112 // execute the function with the evaluated arguments (the default values of the executor are also included in these arguments)
Note: See TracChangeset
for help on using the changeset viewer.