Changeset 9343 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 02/15/09 23:12:04 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MLog.cc
r9336 r9343 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.6 3 2009-02-15 13:24:59tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.64 2009-02-15 23:00:34 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 834 834 // annoying errors in case of a log-scale set too early 835 835 if (level==kError && !strcmp(location, "THistPainter::PaintInit")) 836 level=kInfo ;836 level=kInfo+2; 837 837 838 838 gLog << std::flush; … … 841 841 842 842 if (level >= kInfo) 843 gLog << inf; 843 gLog << inf; 844 if (level==kInfo+1) 845 gLog << inf2; 846 if (level==kInfo+2) 847 gLog << inf3; 844 848 if (level >= kWarning) 845 849 gLog << warn; -
trunk/MagicSoft/Mars/mbase/MPrint.cc
r5715 r9343 149 149 Int_t MPrint::Process() 150 150 { 151 gLog << flush << all; 151 152 if (TestBit(kSeparator)) 152 153 gLog.Separator() << endl; -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r9037 r9343 584 584 fTasksProcess.Clear(); 585 585 while ((task=(MTask*)Next())) 586 if (task->IsA()==MTask::Class() || task->Overwrites Process())586 if (task->IsA()==MTask::Class() || task->Overwrites("Process")) 587 587 fTasksProcess.Add(task); 588 588 … … 621 621 while ((task=(MTask*)Next())) 622 622 { 623 // Supress output if not necessary 624 if (!task->Overwrites("ReInit")) 625 continue; 626 623 627 *fLog << all << task->GetName() << "... " << flush; 624 628
Note:
See TracChangeset
for help on using the changeset viewer.