boxlang-logging
Installation
SKILL.md
BoxLang Logging
Overview
BoxLang uses a centralized logging system built on Logback (SLF4J implementation).
All logging MUST go through LoggingService — never use System.out.println() or
create SLF4J Logger instances directly.
Key classes:
ortus.boxlang.runtime.logging.LoggingService— singleton service managing all loggersortus.boxlang.runtime.logging.BoxLangLogger— wrapper around SLF4JLocationAwareLogger
Getting a Logger
Pre-Configured Common Loggers
import ortus.boxlang.runtime.logging.BoxLangLogger;
import ortus.boxlang.runtime.services.LoggingService;