mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-25 17:44:24 +00:00
11 lines
194 B
GDScript3
11 lines
194 B
GDScript3
|
class_name Log
|
||
|
|
||
|
## Logging utilities
|
||
|
|
||
|
|
||
|
## Print to standard output.
|
||
|
##
|
||
|
## Pass self to the first parameter.
|
||
|
static func p(obj: Node, message: String) -> void:
|
||
|
print("[%s] %s" % [obj, message])
|