Revert "Update Test.gd" (didn't mean to do that)

This reverts commit a94b77d573.
This commit is contained in:
JeremyStar™ 2024-04-14 14:24:25 +02:00
parent b05d1428a5
commit 56c96ee102
Signed by: JeremyStarTM
GPG Key ID: E366BAEF67E4704D
1 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,6 @@ func _init() -> void:
# Update config keys
config.headless = false
config.development = true
config.logger_level = CoreTypes.LoggerLevel.DIAG
# Initialize CORE with custom config
core = Core.new(config)
@ -41,7 +40,7 @@ func _ready() -> void:
await core.complete_init()
# Print information about CORE
logger.diag(await core.get_formatted_string("""Version information:
logger.info(await core.get_formatted_string("""Version information:
Release (semantic) = %version_semantic%
Release = %version%
Typerelease = %version_typerelease%
@ -51,4 +50,4 @@ Development mode = %devmode%
Headless mode = %headless%
Custom module support = %custommodules%"""))
# Print hi
logger.verb("Hi there!")
logger.info("Hi there!")