Loggers.d.ts 384 B

123456789
  1. import { ILogger, LogLevel } from "./ILogger";
  2. /** A logger that does nothing when log messages are sent to it. */
  3. export declare class NullLogger implements ILogger {
  4. /** The singleton instance of the {@link @microsoft/signalr.NullLogger}. */
  5. static instance: ILogger;
  6. private constructor();
  7. /** @inheritDoc */
  8. log(_logLevel: LogLevel, _message: string): void;
  9. }