From 33067af2832e1b6b19b1003824671e6015c03289 Mon Sep 17 00:00:00 2001 From: crueter Date: Mon, 2 Feb 2026 19:00:44 +0100 Subject: [PATCH] [settings] Disable GPU logging by default (#3455) Why was this enabled? Signed-off-by: crueter Co-authored-by: Caio Oliveira Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3455 Reviewed-by: DraVee --- shell.nix | 2 +- src/android/app/src/main/res/values/strings.xml | 2 -- src/common/settings.h | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index 3c91286738..d835b43ed1 100644 --- a/shell.nix +++ b/shell.nix @@ -20,4 +20,4 @@ pkgs.mkShellNoCC { # optional components discord-rpc gamemode ]; -} \ No newline at end of file +} diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml index ff8b1e3c72..18cee9b331 100644 --- a/src/android/app/src/main/res/values/strings.xml +++ b/src/android/app/src/main/res/values/strings.xml @@ -556,13 +556,11 @@ Flushes debugging logs on each line written, making debugging easier in cases of crashing or freezing. - GPU Logging GPU Logging Enable GPU Logging Log GPU operations to eden_gpu.log for debugging Adreno drivers Log Level Detail level for GPU logs (higher = more detail, more overhead) - Logging Features Log Vulkan API Calls Track all Vulkan API calls in ring buffer Dump Shaders diff --git a/src/common/settings.h b/src/common/settings.h index 09c05a812a..878f65c973 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -739,7 +739,7 @@ struct Values { Setting disable_web_applet{linkage, true, "disable_web_applet", Category::Debugging}; // GPU Logging - Setting gpu_logging_enabled{linkage, true, "gpu_logging_enabled", Category::Debugging}; + Setting gpu_logging_enabled{linkage, false, "gpu_logging_enabled", Category::Debugging}; SwitchableSetting gpu_log_level{linkage, GpuLogLevel::Standard, "gpu_log_level", Category::Debugging}; Setting gpu_log_vulkan_calls{linkage, true, "gpu_log_vulkan_calls", Category::Debugging};