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 loggers
  • ortus.boxlang.runtime.logging.BoxLangLogger — wrapper around SLF4J LocationAwareLogger

Getting a Logger

Pre-Configured Common Loggers

import ortus.boxlang.runtime.logging.BoxLangLogger;
import ortus.boxlang.runtime.services.LoggingService;
Installs
2
First Seen
Apr 15, 2026
boxlang-logging — ortus-boxlang/skills