From fb3807200555ad6171bc415c8dd99a729f851a68 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Mon, 8 Apr 2024 20:26:21 +0200 Subject: [PATCH] Update example config in README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 8d04a05..17ef1a2 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,16 @@ If you want to update **Bessere Tests**'s configuration create a GDScript file a ```gdscript extends Node +# Enables development mode. Please keep that disabled. +var dev: bool = false # What directory should tests be located in? var test_directory: String = "res://tests" +# The minimum log level. +# Possible values: 0 = diagnostic, 1 = verbose, 2 = informational, 3 = warning, 4 = error +var log_level: int = 2 +# The logging template. Is of type String. +# Available placeholders: %time%, %time_us%, %time_ms%, %level%, %origin%, %message%, %color_start% & %color_end% +var log_format = null # If Bessere Tests should complain about orphan nodes. # This behaviour is reportedly broken and does not work correctly (see #1). # Rely on Godot's debug/verbose output for this instead (use Bessere Tests' command line script).