Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 31, 2011, 11:42:55 PM (13 years ago)
Author:
landauf
Message:

Removed debugLevel_ from Shell, using correct variable inherited from BaseWriter as config value.
Fixed OutputListener::setLevelMax() which ignored the new output level "message".
Fixed using a boolean called "verbose" instead of the output level with the same name in Loader.
Preventing further problems of this kind by defining OutputLevel as an enum.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/util/output/BaseWriter.h

    r8799 r8808  
    5050            void setLevelMax(OutputLevel max);
    5151
    52             OutputLevel configurableMaxLevel_;
     52            int configurableMaxLevel_;
    5353            inline std::string getConfigurableMaxLevelName() const
    5454                { return "outputLevel" + this->name_; }
    5555
    56             OutputLevel configurableContextsMaxLevel_;
     56            int configurableContextsMaxLevel_;
    5757            inline std::string getConfigurableContextsMaxLevelName() const
    5858                { return "outputContextsLevel" + this->name_; }
Note: See TracChangeset for help on using the changeset viewer.