Extend debug output

This commit is contained in:
2023-07-31 16:43:28 +02:00
parent 7acc8c5ee3
commit c84c79d966
2 changed files with 7 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ var output_dir
var serve_mode
var cache_dir
var auth_key
var hostname
var rendering = false
signal finished_rendering
@@ -20,6 +21,10 @@ func _ready():
serve_mode = config.get_value("core", "serve_mode")
cache_dir = config.get_value("core", "cache_dir")
auth_key = config.get_value("core", "auth_key")
hostname = config.get_value("core", "hostname")
if OS.has_environment("USERNAME"):
hostname = "%s/%s" % [OS.get_environment("USERNAME"), hostname]
print("Starting render node")