fix(process log): use unix timestamp to avoid invalid characters in
filename
This commit is contained in:
parent
d9d0122c3d
commit
dafce24de2
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ impl ProcessManager {
|
|||
.open(self.log_output_dir.join(format!(
|
||||
"{}-{}.log",
|
||||
game_id,
|
||||
current_time.to_rfc3339()
|
||||
current_time.timestamp()
|
||||
)))
|
||||
.map_err(|v| v.to_string())?;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue