Skip to content

Commit

Permalink
Merge pull request #254 from Ughuuu/rename-godot.log-to-blazium.log
Browse files Browse the repository at this point in the history
rename godot.log to blazium.log
  • Loading branch information
Bioblaze authored Jan 20, 2025
2 parents ddff583 + 2b9c2d2 commit 2f84622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/classes/ProjectSettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
<member name="debug/file_logging/enable_file_logging.pc" type="bool" setter="" getter="" default="true">
Desktop override for [member debug/file_logging/enable_file_logging], as log files are not readily accessible on mobile/Web platforms.
</member>
<member name="debug/file_logging/log_path" type="String" setter="" getter="" default="&quot;user://logs/godot.log&quot;">
<member name="debug/file_logging/log_path" type="String" setter="" getter="" default="&quot;user://logs/blazium.log&quot;">
Path at which to store log files for the project. Using a path under [code]user://[/code] is recommended.
This can be specified manually on the command line using the [code]--log-file &lt;file&gt;[/code] [url=$DOCS_URL/tutorials/editor/command_line_tutorial.html]command line argument[/url]. If this command line argument is specified, log rotation is automatically disabled (see [member debug/file_logging/max_log_files]).
</member>
Expand Down
2 changes: 1 addition & 1 deletion main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1887,7 +1887,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
// This also prevents logs from being created for the editor instance, as feature tags
// are disabled while in the editor (even if they should logically apply).
GLOBAL_DEF("debug/file_logging/enable_file_logging.pc", true);
GLOBAL_DEF("debug/file_logging/log_path", "user://logs/godot.log");
GLOBAL_DEF("debug/file_logging/log_path", "user://logs/blazium.log");
GLOBAL_DEF(PropertyInfo(Variant::INT, "debug/file_logging/max_log_files", PROPERTY_HINT_RANGE, "0,20,1,or_greater"), 5);

// If `--log-file` is used to override the log path, allow creating logs for the project manager or editor
Expand Down

0 comments on commit 2f84622

Please sign in to comment.