Changed the FFMPEG command output to get logged under debug to clean up log file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine 2022-10-26 12:20:22 -04:00
parent 3bcbabf1b6
commit 1671b95128

View File

@ -2,7 +2,7 @@ use config::Config;
use std::path::Path; use std::path::Path;
use std::process; use std::process;
use std::{thread, time}; use std::{thread, time};
use log::{info}; use log::{debug, info};
use crate::util::io; use crate::util::io;
use super::repository::Repository; use super::repository::Repository;
@ -83,6 +83,6 @@ impl Transcoder {
assert!(cmd_output.status.success()); assert!(cmd_output.status.success());
let results_raw = &String::from_utf8_lossy(&cmd_output.stderr); let results_raw = &String::from_utf8_lossy(&cmd_output.stderr);
info!("{}", results_raw); debug!("{}", results_raw);
} }
} }