Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tutorials/scripting/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ Here is a minimal working example of a custom logger, with the script added as a
func _log_message(message: String, error: bool) -> void:
# Do something with `message`.
# `error` is `true` for messages printed to the standard error stream (stderr) with `print_error()`.
# Note that this method will be called from threads other than the main thread, possibly at the same
# time, so you will need to have some kind of thread-safety as part of it, like a Mutex.
pass

func _log_error(
Expand All @@ -239,6 +241,8 @@ Here is a minimal working example of a custom logger, with the script added as a
) -> void:
# Do something with the error. The error text is in `rationale`.
# See the Logger class reference for details on other parameters.
# Note that this method will be called from threads other than the main thread, possibly at the same
# time, so you will need to have some kind of thread-safety as part of it, like a Mutex.
pass

# Use `_init()` to initialize the logger as early as possible, which ensures that messages
Expand Down
Loading