Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 12, 2011, 12:48:23 AM (13 years ago)
Author:
landauf
Message:

cleaned up contexts, added some sub-contexts and made some output verbose

Location:
code/branches/output/src/libraries/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/core/ClassFactory.h

    r8806 r8835  
    7373            ClassFactory(const std::string& name, bool bLoadable = true)
    7474            {
    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;
    7676                ClassIdentifier<T>::getIdentifier(name)->addFactory(this);
    7777                ClassIdentifier<T>::getIdentifier()->setLoadable(bLoadable);
  • code/branches/output/src/libraries/core/command/Executor.cc

    r8806 r8835  
    108108        }
    109109
    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;
    111111
    112112        // 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.