From f2a8ebb34494f61f0c28da3283de99de4a9bcf63 Mon Sep 17 00:00:00 2001 From: stan Date: Sun, 22 May 2005 17:33:34 +0000 Subject: [PATCH] Removed extra debug, added some just in case debug also for jpeg-mmx but commented out. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1426 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_monitor.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/zm_monitor.h b/src/zm_monitor.h index b9c8e7cf4..bd7e96c68 100644 --- a/src/zm_monitor.h +++ b/src/zm_monitor.h @@ -215,7 +215,6 @@ public: token_count++; token_ptr += strlen(token_string); } - Info(( "Found %d tokens, in %s", token_count, label_format )); } strftime( label_time_text, sizeof(label_time_text), label_format, localtime( &ts_time ) ); switch ( token_count ) @@ -296,7 +295,9 @@ public: { time_t now = image_buffer[index].timestamp->tv_sec; fps = double(fps_report_interval)/(now-last_fps_time); - Info(( "%s: %d - Capturing at %.2f fps", name, image_count, fps )); + //Info(( "%d -> %d -> %d", fps_report_interval, now, last_fps_time )); + //Info(( "%d -> %d -> %lf -> %lf", now-last_fps_time, fps_report_interval/(now-last_fps_time), double(fps_report_interval)/(now-last_fps_time), fps )); + Info(( "%s: %d - Capturing at %.2lf fps", name, image_count, fps )); last_fps_time = now; }