1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-25 17:44:24 +00:00
hella-farm/log.gd

11 lines
194 B
GDScript3
Raw Normal View History

2024-04-13 21:25:47 +00:00
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])