summaryrefslogtreecommitdiffstats
path: root/raslib
diff options
context:
space:
mode:
authorPeter Baumann <p.baumann@jacobs-university.de>2010-05-20 23:47:42 +0200
committerwww-data <www-data@ubuntu.localdomain>2010-06-08 10:50:36 +0200
commit06b19f99cf844f4af72bee523ed61ebdbaa4c8b5 (patch)
tree691ca6d55cea96cb8c18c14970f22449cbbd385f /raslib
parent451da838c3b81205409f3c5266e0939995a4a17c (diff)
downloadrasdaman-upstream-06b19f99cf844f4af72bee523ed61ebdbaa4c8b5.tar.gz
rasdaman-upstream-06b19f99cf844f4af72bee523ed61ebdbaa4c8b5.tar.xz
rasdaman-upstream-06b19f99cf844f4af72bee523ed61ebdbaa4c8b5.zip
PB: improved Timer output for easy grepping
Diffstat (limited to 'raslib')
-rw-r--r--raslib/rmdebug.icc5
1 files changed, 3 insertions, 2 deletions
diff --git a/raslib/rmdebug.icc b/raslib/rmdebug.icc
index 5c7a292..f325c10 100644
--- a/raslib/rmdebug.icc
+++ b/raslib/rmdebug.icc
@@ -112,8 +112,9 @@ RMTimer::stop()
pause();
if(output && RManBenchmark >= bmLevel ) {
- RMInit::bmOut << "T: " << myClass << "::" << myFunc << ": "
- << accuTime << "us" << std::endl;
+ RMInit::bmOut << std::endl
+ << "PerformanceTimer: " << myClass << " :: " << myFunc << ": "
+ << accuTime << " usecs" << std::endl;
// set output to FALSE
output = 0;
}