classic
Escape hatch to the classic (non-context) logging API from inside a TracingContext / Span scope, where the context-aware overloads above would otherwise win (or be ambiguous).
log.classic.info { … } logs with no span auto-attached — exactly like the log4k-classic extensions — while log.classic.info(span) { … } attaches the given Span explicitly. It is also the only way to reach the classic API from a module that depends solely on log4k-context (which does not re-export log4k-classic).
Log4kClassic is a zero-cost JvmInline wrapper carrying the Logger; the forwarders below mirror the log4k-classic overloads by delegating straight to Logger.log.