Skip to content

Commit

Permalink
Changed the level of TimeModule to LogPrint so it will come out at the
Browse files Browse the repository at this point in the history
warning level (instead of as INFO).  Although I suspect some users would
prefer the level to be INFO, this change minimizes the chance of behavior
changes (that is, some job that wants the module timings not getting them
just because this file changed).
  • Loading branch information
Mark Steven Fischler committed Mar 18, 2009
1 parent 0c5aba5 commit b9df3e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FWCore/Services/src/Timing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Implementation:
//
// Original Author: Jim Kowalkowski
// $Id: Timing.cc,v 1.15 2009/02/12 11:53:17 ngarcian Exp $
// $Id: Timing.cc,v 1.16 2009/03/18 15:39:37 fischler Exp $
//
// Change Log
//
Expand All @@ -27,8 +27,8 @@
// by default the behavior will not change, but
// there will now be a way to control the verbosity.
//
// 4 - mf 3/18/09 The per-event output TimeModule is changed to LogPrint.
// The per-module output TimeModule is changed to LogVerbatim.
// 4 - mf 3/18/09 The per-event output TimeEvent is changed to LogPrint.
// The per-module output TimeModule is changed to LogPrint.
//

#include "FWCore/Services/interface/Timing.h"
Expand Down Expand Up @@ -213,7 +213,7 @@ namespace edm {
double t = getTime() - curr_module_time_;
//edm::LogInfo("TimeModule")
if (not summary_only_) {
edm::LogVerbatim("TimeModule") << "TimeModule> " // ChangeLog 4
edm::LogPrint("TimeModule") << "TimeModule> " // ChangeLog 4
<< curr_event_.event() << " "
<< curr_event_.run() << " "
<< desc.moduleLabel() << " "
Expand Down

0 comments on commit b9df3e9

Please sign in to comment.