Interface LoggingReplacementsInternal

Replacements.

Hierarchy

  • LoggingReplacements

Properties

debug?: {
    (...data: any[]): void;
    (message?: any, ...optionalParams: any[]): void;
}

Type declaration

    • (...data: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • (message?: any, ...optionalParams: any[]): void
    • The console.debug() function is an alias for log.

      Since

      v8.0.0

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

error?: {
    (...data: any[]): void;
    (message?: any, ...optionalParams: any[]): void;
}

Type declaration

    • (...data: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • (message?: any, ...optionalParams: any[]): void
    • Prints to stderr with newline. Multiple arguments can be passed, with the first used as the primary message and all additional used as substitution values similar to printf(3) (the arguments are all passed to util.format()).

      const code = 5;
      console.error('error #%d', code);
      // Prints: error #5, to stderr
      console.error('error', code);
      // Prints: error 5, to stderr

      If formatting elements (e.g. %d) are not found in the first string then util.inspect() is called on each argument and the resulting string values are concatenated. See util.format() for more information.

      Since

      v0.1.100

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

info?: {
    (...data: any[]): void;
    (message?: any, ...optionalParams: any[]): void;
}

Type declaration

    • (...data: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • (message?: any, ...optionalParams: any[]): void
    • The console.info() function is an alias for log.

      Since

      v0.1.100

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

log?: {
    (...data: any[]): void;
    (message?: any, ...optionalParams: any[]): void;
}

Type declaration

    • (...data: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • (message?: any, ...optionalParams: any[]): void
    • Prints to stdout with newline. Multiple arguments can be passed, with the first used as the primary message and all additional used as substitution values similar to printf(3) (the arguments are all passed to util.format()).

      const count = 5;
      console.log('count: %d', count);
      // Prints: count: 5, to stdout
      console.log('count:', count);
      // Prints: count: 5, to stdout

      See util.format() for more information.

      Since

      v0.1.100

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

warn?: {
    (...data: any[]): void;
    (message?: any, ...optionalParams: any[]): void;
}

Type declaration

    • (...data: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • (message?: any, ...optionalParams: any[]): void
    • The console.warn() function is an alias for error.

      Since

      v0.1.100

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

Generated using TypeDoc