From 6dd9b4b07c667277ed57333d8dc7a0899013efb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=83=E9=9A=A8=E7=B7=A3=E5=8B=95?= Date: Thu, 11 Sep 2025 21:25:12 +0800 Subject: [PATCH] update Xray Core on Windows --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 32d83055..d5fe65ff 100644 --- a/config/config.go +++ b/config/config.go @@ -95,7 +95,7 @@ func GetLogFolder() string { return logFolderPath } if runtime.GOOS == "windows" { - return getBaseDir() + return filepath.Join(".", "log") } return "/var/log" }