Skip to content

Commit

Permalink
config_parser: include write_log_to_file
Browse files Browse the repository at this point in the history
  • Loading branch information
DashieTM committed Apr 20, 2024
1 parent ec80be7 commit 1f008bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{fs, io::Read};
use once_cell::sync::Lazy;
use toml::Table;

use crate::{utils::macros::ErrorLevel, ERROR};
use crate::{utils::macros::ErrorLevel, ERROR, write_log_to_file};

pub static mut CONFIG_STRING: &str = "~/.config/reset/ReSet.toml";
pub const CONFIG: Lazy<Table> = Lazy::new(parse_config);
Expand Down

0 comments on commit 1f008bc

Please sign in to comment.