Keep log file names in the same format

This commit is contained in:
Droid-MAX
2023-04-25 12:51:03 +08:00
parent 3ddcb629c0
commit 38dce9c13b
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ pub fn log_service_init() -> io::Result<()> {
log_init_("switch-service.log")
}
pub fn log_init() -> io::Result<()> {
log_init_("switch.log")
log_init_("switch-desktop.log")
}
pub fn log_init_(file_name:&str) -> io::Result<()> {
let home = SWITCH_HOME_PATH.lock().clone();
@@ -47,4 +47,4 @@ pub fn log_init_(file_name:&str) -> io::Result<()> {
Err(_) => {}
}
Ok(())
}
}
+4 -4
View File
@@ -91,8 +91,8 @@ pub struct StartArgs {
#[cfg(any(unix))]
#[arg(long)]
off_command_server: bool,
/// 记录日志,输出在 home/.switch 目录下,长时间使用时不建议开启
/// Output the log in the "home/.switch" directory
/// 记录日志,输出在 home/.switch_desktop 目录下,长时间使用时不建议开启
/// Output the log in the "home/.switch_desktop" directory
#[arg(long)]
log: bool,
}
@@ -129,7 +129,7 @@ fn main() {
windows::service::start();
return;
} else {
let home = dirs::home_dir().unwrap().join(".switch");
let home = dirs::home_dir().unwrap().join(".switch_desktop");
config::set_home(home);
let args = BaseArgs::parse();
if let Commands::Start(start_args) = &args.command {
@@ -143,7 +143,7 @@ fn main() {
#[cfg(any(target_os = "linux", target_os = "macos"))]
fn main() {
let home = dirs::home_dir().unwrap().join(".switch");
let home = dirs::home_dir().unwrap().join(".switch_desktop");
config::set_home(home);
let args = BaseArgs::parse();
if let Commands::Start(start_args) = &args.command {