From 9ead79db37d951fa46230b93b8c15f63dc03e232 Mon Sep 17 00:00:00 2001 From: stan Date: Sun, 15 Feb 2004 23:16:00 +0000 Subject: [PATCH] Bumped timing debug up to level 2 git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@858 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_monitor.cpp b/src/zm_monitor.cpp index 4671e6368..38d615b3e 100644 --- a/src/zm_monitor.cpp +++ b/src/zm_monitor.cpp @@ -603,7 +603,7 @@ bool Monitor::Analyse() int pending_frames = shared_data->last_write_index - shared_data->last_read_index; if ( pending_frames < 0 ) pending_frames += image_buffer_count; - Debug( 1, ( "RI:%d, WI: %d, PF = %d, RM = %d, Step = %d", shared_data->last_read_index, shared_data->last_write_index, pending_frames, read_margin, step )); + Debug( 2, ( "RI:%d, WI: %d, PF = %d, RM = %d, Step = %d", shared_data->last_read_index, shared_data->last_write_index, pending_frames, read_margin, step )); if ( step <= pending_frames ) { index = (shared_data->last_read_index+step)%image_buffer_count;