brackeys-12/components/Logger/logger-toolbar.gd

35 lines
662 B
GDScript3
Raw Permalink Normal View History

2024-09-08 17:34:41 +00:00
const LOG_CATEGORY = "TOOLT"
const NAME = "Logger"
func send_log(parent):
parent.info("Test Log!", {
"image": "res://components/Toolbar/hammer.svg",
"color": "#818181",
"category": "TST"
})
func send_debug(parent):
parent.debug("Test Debug!", {
"image": "res://components/Toolbar/hammer.svg",
"color": "#818181",
"category": "TST"
})
func send_warning(parent):
parent.warn("Test Warn!", {
"image": "res://components/Toolbar/hammer.svg",
"color": "#818181",
"category": "TST"
})
func send_error(parent):
parent.error("Test Error!", {
"image": "res://components/Toolbar/hammer.svg",
"color": "#818181",
"category": "TST"
})