Ignore:
Timestamp:
10/17/06 18:18:40 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MLog.cc

    r8103 r8106  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.54 2006-10-17 14:11:36 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.55 2006-10-17 17:15:59 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    763763      gErrorIgnoreLevel = 0;
    764764      if (gEnv) {
    765          TString level = gEnv->GetValue("Root.ErrorIgnoreLevel", "Info");
    766          if (!level.CompareTo("Info",TString::kIgnoreCase))
     765         TString lvl = gEnv->GetValue("Root.ErrorIgnoreLevel", "Info");
     766         if (!lvl.CompareTo("Info",TString::kIgnoreCase))
    767767            gErrorIgnoreLevel = kInfo;
    768          else if (!level.CompareTo("Warning",TString::kIgnoreCase))
     768         else if (!lvl.CompareTo("Warning",TString::kIgnoreCase))
    769769            gErrorIgnoreLevel = kWarning;
    770          else if (!level.CompareTo("Error",TString::kIgnoreCase))
     770         else if (!lvl.CompareTo("Error",TString::kIgnoreCase))
    771771            gErrorIgnoreLevel = kError;
    772          else if (!level.CompareTo("Break",TString::kIgnoreCase))
     772         else if (!lvl.CompareTo("Break",TString::kIgnoreCase))
    773773            gErrorIgnoreLevel = kBreak;
    774          else if (!level.CompareTo("SysError",TString::kIgnoreCase))
     774         else if (!lvl.CompareTo("SysError",TString::kIgnoreCase))
    775775            gErrorIgnoreLevel = kSysError;
    776          else if (!level.CompareTo("Fatal",TString::kIgnoreCase))
     776         else if (!lvl.CompareTo("Fatal",TString::kIgnoreCase))
    777777            gErrorIgnoreLevel = kFatal;
    778778      }
Note: See TracChangeset for help on using the changeset viewer.