Bumped timing debug up to level 2

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@858 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan
2004-02-15 23:16:00 +00:00
parent 5c41286931
commit 9ead79db37

View File

@@ -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;