Cleanup logs, make prints more uniform.

This commit is contained in:
JonShard
2026-08-14 10:02:26 +02:00
parent 9e0c3ed174
commit f28c987a3a
26 changed files with 184 additions and 184 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ var _grab_race_logged := false
func _ready() -> void:
_pickable = get_parent() as XRToolsPickable
if not _pickable:
push_error("NetPickable must be a child of an XRToolsPickable")
SweetLogger.error("{0} must be a child of an XRToolsPickable", [name])
return
_original_freeze_mode = _pickable.freeze_mode
_original_enabled = _pickable.enabled
+2 -2
View File
@@ -154,7 +154,7 @@ func _despawn_static_item(path: NodePath) -> void:
func _spawn_item_from_data(data: Variant) -> Node:
var scene: PackedScene = load(data["scene"])
if not scene:
push_error("spawn_item: could not load scene %s" % str(data.get("scene")))
SweetLogger.error("Could not load scene {0}", [str(data.get("scene"))])
return null
var inst := scene.instantiate()
if inst is Node3D:
@@ -474,7 +474,7 @@ func _on_player_absent(peer_id: int) -> void:
# --- Command-line driven test bootstrap -----------------------------------
func _handle_cmdline() -> void:
SweetLogger.info("Networkmanager _handle_cmdline()")
SweetLogger.debug("->[]")
var args := OS.get_cmdline_args()
if args.has("--server"):
log_line("cmdline: --server")