From 5f606768d7b0383d0b240a6a7c0295a6e02e4917 Mon Sep 17 00:00:00 2001 From: schnippl0r Date: Wed, 21 Jul 2021 03:33:13 +0200 Subject: [PATCH] Fixed wrong filename of logfile in Voxygen's panic message. Moved the '' component of the logfile name to the end of the filename string, as RollingFileAppender::new() appends the date to the provided file name prefix. Please see https://docs.rs/tracing-appender/0.1.2/tracing_appender/rolling/struct.RollingFileAppender.html#method.new --- voxygen/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index 627ea0a293..6b880b0482 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -114,7 +114,7 @@ fn main() { PanicInfo: {}\n\ Game version: {} [{}]", logs_dir - .join("voxygen-.log") + .join("voxygen.log.") .display(), reason, panic_info,