Reduce logging
This commit is contained in:
parent
a6a6c39e43
commit
e43008822f
1 changed files with 3 additions and 3 deletions
|
|
@ -565,8 +565,8 @@ fn ffmpeg_thread<P: AsRef<Path>>(
|
||||||
(video_queue_duration, video_queue.delay)
|
(video_queue_duration, video_queue.delay)
|
||||||
};
|
};
|
||||||
|
|
||||||
println!(
|
log::debug!(
|
||||||
"VIDEO: {:?}, {:?} AUDIO: {:?}, {:?}",
|
"video: {:?}, {:?} audio: {:?}, {:?}",
|
||||||
video_queue_duration, video_queue_delay, audio_queue_duration, audio_queue_delay
|
video_queue_duration, video_queue_delay, audio_queue_duration, audio_queue_delay
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -574,7 +574,7 @@ fn ffmpeg_thread<P: AsRef<Path>>(
|
||||||
if min_queue_duration > buffer_duration {
|
if min_queue_duration > buffer_duration {
|
||||||
// If we have enough queued, we can sleep
|
// If we have enough queued, we can sleep
|
||||||
let sleep = min_queue_duration - buffer_duration;
|
let sleep = min_queue_duration - buffer_duration;
|
||||||
println!("SLEEP {:?}", sleep);
|
log::debug!("sleep {:?}", sleep);
|
||||||
thread::sleep(sleep);
|
thread::sleep(sleep);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue