This commit is contained in:
jb-alvarado 2023-10-01 13:04:44 +02:00
parent 98018f6310
commit 902fb99966
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
### This project is taking a summer break, during this time the Issues and Discussions are closed. In October both will be open again. Until then have a good time!
**ffplayout**
================

View File

@ -75,7 +75,7 @@ pub fn get_config(args: Args) -> PlayoutConfig {
}
if let Some(log_path) = args.log {
if &log_path != Path::new("none") && log_path.is_dir() {
if log_path != Path::new("none") && log_path.is_dir() {
config.logging.log_to_file = true;
config.logging.path = log_path;
} else {