diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-09-20 18:50:30 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-09-20 18:50:30 +0000 |
commit | 46d6e1fd3dbe0bc116a46fdab91b40fe2ecd6803 (patch) | |
tree | 9caca4c1878a58b183e214ecf4caa225987bc8e7 /utils/timing_stats.cc | |
parent | cf36f7d66ad19331da109f5a81ea3ea5844deb1c (diff) |
support turning off verbose logging
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@652 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'utils/timing_stats.cc')
-rw-r--r-- | utils/timing_stats.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/utils/timing_stats.cc b/utils/timing_stats.cc index fc8e9df1..dc90bf53 100644 --- a/utils/timing_stats.cc +++ b/utils/timing_stats.cc @@ -2,6 +2,9 @@ #include <iostream> #include "time.h" //cygwin needs + +#include "verbose.h" + using namespace std; map<string, TimerInfo> Timer::stats; @@ -16,8 +19,10 @@ Timer::~Timer() { } void Timer::Summarize() { - for (map<string, TimerInfo>::iterator it = stats.begin(); it != stats.end(); ++it) { - cerr << it->first << ": " << it->second.total_time << " secs (" << it->second.calls << " calls)\n"; + if (!SILENT) { + for (map<string, TimerInfo>::iterator it = stats.begin(); it != stats.end(); ++it) { + cerr << it->first << ": " << it->second.total_time << " secs (" << it->second.calls << " calls)\n"; + } } stats.clear(); } |