Skip to content

Commit

Permalink
some debug logs commented out
Browse files Browse the repository at this point in the history
  • Loading branch information
m13v committed Jul 16, 2024
1 parent 2d250bc commit 05055a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions screenpipe-server/src/video.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ impl VideoCapture {
let _queue_thread = tokio::spawn(async move {
while *capture_thread_is_running.lock().await {
if let Some(result) = result_receiver.recv().await {
debug!(
"Received result from capture thread: frame_number: {:?}",
result.frame_number
);
debug!(
"Received result from capture thread: timestamp: {:?}",
result.timestamp
);
// debug!(
// "Received result from capture thread: frame_number: {:?}",
// result.frame_number
// );
// debug!(
// "Received result from capture thread: timestamp: {:?}",
// result.timestamp
// );
// debug!("Received result from capture thread: text: {:?}", result.text);
capture_frame_queue.lock().await.push_back(result);
}
Expand Down

0 comments on commit 05055a9

Please sign in to comment.