1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-10-17 06:47:35 +00:00
hella-farm/log.gd

10 lines
194 B
GDScript

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])