From 87641dd55cc0c4da27cee076e578c8ecf5928e64 Mon Sep 17 00:00:00 2001 From: algodoogle Date: Sat, 25 Jul 2026 21:07:29 +0100 Subject: [PATCH] Enable file logging to logs/, gitignore its output Pairs with the debug-log-heavy investigation workflow: Godot writes its own engine log to logs/godot.log alongside the existing NetworkManager temp-file log, and the directory is excluded from version control since it's runtime output, not source. Co-Authored-By: Claude Sonnet 5 --- .gitignore | 3 ++- project.godot | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 549b672..86174da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # Godot 4+ specific ignores .godot/ /android/ -.log \ No newline at end of file +.log +/logs diff --git a/project.godot b/project.godot index 407a20a..808c9b7 100644 --- a/project.godot +++ b/project.godot @@ -22,6 +22,11 @@ XRToolsRumbleManager="*uid://by853dk86g1qw" NetworkManager="*res://Net/network_manager.gd" GlobalKeyEvents="*uid://c60unagog5oi1" +[debug] + +file_logging/enable_file_logging=true +file_logging/log_path="res://logs/godot.log" + [display] window/size/viewport_width=1800