Fully functional manual searching capabilities and refresh capabilities for all movies, downloads, and collections

This commit is contained in:
2023-08-08 10:50:05 -06:00
parent 05b8f85dfb
commit 6735849518
12 changed files with 426 additions and 66 deletions
+3 -1
View File
@@ -7,7 +7,9 @@ use regex::Regex;
pub fn init_logging_config() -> log4rs::Config {
let file_path = "/tmp/managarr.log";
let logfile = FileAppender::builder()
.encoder(Box::new(PatternEncoder::new("{l} - {m}\n")))
.encoder(Box::new(PatternEncoder::new(
"{h({d(%Y-%m-%d %H:%M:%S)(utc)} - {l}: {m}{n})}",
)))
.build(file_path)
.unwrap();