interface LogProxy {
    setLogger(level:
        | "NONE"
        | "ERROR"
        | "WARN"
        | "INFO", store: boolean): void;
}

Methods

Methods

  • Change the log level

    Parameters

    • level:
          | "NONE"
          | "ERROR"
          | "WARN"
          | "INFO"

      Either NONE, ERROR, WARN or INFO

    • store: boolean

      Whether the new level should be stored in local storage (and will be automatically retrieved on browser load)

    Returns void