Skip to content

Commit

Permalink
fix: fix os indicate in logger
Browse files Browse the repository at this point in the history
  • Loading branch information
SkuldNorniern committed Oct 2, 2024
1 parent 9208763 commit 593fd92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ impl Logger {
"C:\\Program Files\\fluere\\fluere.log",
#[cfg(target_os = "macos")]
"/Library/Logs/fluere/fluere.log",
#[cfg(target_os = "bsd")]
#[cfg(target_os = "freebsd")]
"/var/log/fluere/fluere.log",
#[cfg(not(any(
target_os = "linux",
target_os = "windows",
target_os = "macos",
target_os = "bsd"
target_os = "freebsd"
)))]
"/var/log/fluere/fluere.log",
));
Expand Down

0 comments on commit 593fd92

Please sign in to comment.