LogLogger
interface LogLogger
Interface for custom loggers. Defines the contract for logging systems used in the application.
By default, NoLog is used, which disables all logging. To enable logging, call LogLogger.install with a concrete logger implementation.
Custom loggers can implement this interface to handle logs differently, e.g., sending logs to a file, console, or remote server.