Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 29, 2011, 10:26:45 PM (13 years ago)
Author:
landauf
Message:

Shell and its derivatives are now based on the new output system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/util/output/LogWriter.cc

    r8794 r8795  
    7474
    7575        if (this->file_.is_open())
    76             this->printLine("Log file opened");
     76            this->printLine("Log file opened", level::none);
    7777        else
    7878            OutputManager::getInstance().pushMessage(level::user_warning, context::output(), "Failed to open log file. File logging disabled.");
     
    8383        if (this->file_.is_open())
    8484        {
    85             this->printLine("Log file closed");
     85            this->printLine("Log file closed", level::none);
    8686            this->file_.close();
    8787        }
     
    100100    }
    101101
    102     void LogWriter::printLine(const std::string& line)
     102    void LogWriter::printLine(const std::string& line, OutputLevel)
    103103    {
    104104        if (!this->file_.is_open())
Note: See TracChangeset for help on using the changeset viewer.