camerabin: Improve debug message about processing counter

Mention on the logs how many capture operations might have been
lost
This commit is contained in:
Thiago Santos 2012-02-02 12:22:06 -03:00
parent ddff93320d
commit 9bd40e92ce

View file

@ -3929,7 +3929,8 @@ gst_camerabin_change_state (GstElement * element, GstStateChange transition)
}
/* reset processing counter */
GST_DEBUG_OBJECT (camera, "Reset processing counter to 0");
GST_DEBUG_OBJECT (camera, "Reset processing counter from %d to 0",
camera->processing_counter);
camera->processing_counter = 0;
g_object_notify (G_OBJECT (camera), "idle");
g_mutex_unlock (camera->capture_mutex);