CommandkitClassesNoopLoggerVersion: NextOn this pageNoopLoggerNoopLogger commandkitNoopLogger.ts Noop logger implementation that does nothing. Signatureclass NoopLogger implements ILogger { debug(args: any[]) => void; error(args: any[]) => void; log(args: any[]) => void; info(args: any[]) => void; warn(args: any[]) => void;} Implements: ILogger debugmethod(args: any[]) => voidLogs a debug message.errormethod(args: any[]) => voidLogs an error message.logmethod(args: any[]) => voidLogs a default message.infomethod(args: any[]) => voidLogs an info message.warnmethod(args: any[]) => voidLogs a warning message.