Interface representing logging in Logus.
interface LogusLog { debug(message: string): void; info(message: string): void;}
Logs a debug message.
Logs an informational message.
Interface representing logging in Logus.