mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
10 lines
194 B
GDScript
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])
|