Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 27, 2014, 9:54:25 AM (10 years ago)
Author:
smerkli
Message:

Removed some verbose output from default output and
re-added a file that was removed accidentally.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentationFS14/src/orxonox/controllers/ControllerDirector.cc

    r10076 r10077  
    2727
    2828        // output a message to ensure we know the constructor was run
    29         orxout()<<"hello universe constructor blablub"<< endl;
     29        orxout(verbose)<<"hello universe constructor blablub"<< endl;
    3030
    3131
     
    4242        SUPER(ControllerDirector, XMLPort, xmlelement, mode);
    4343
    44         orxout()<< "ControllerDirector::XMLPort "
     44        orxout(verbose)<< "ControllerDirector::XMLPort "
    4545          << "An instance of ControllerDirector has been created." << endl;
    4646    }
     
    6363    {
    6464       /* Output a message confirming that the function was called */
    65        orxout()<<"test takecontrol."<< endl;
     65       orxout(verbose)<<"test takecontrol."<< endl;
    6666
    6767       /* First, we set up a new controller to attach to the unit that
     
    112112        this->player_ = NULL;
    113113
    114         orxout() << "Preparation to take Control!" << endl;
     114        orxout(verbose) << "Preparation to take Control!" << endl;
    115115
    116116        // Check whether it is a player trigger and extract pawn from it
     
    125125        else
    126126        {
    127             orxout() << "ControllerDirector::preparationToTakeControl "
     127            orxout(verbose) << "ControllerDirector::preparationToTakeControl "
    128128              << "Not a player trigger, can't extract pawn from it.." << endl;
    129129            return false;
Note: See TracChangeset for help on using the changeset viewer.