Skip to main content
Module

x/blocks/deps.ts>DiagLogLevel

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
enum DiagLogLevel
import { DiagLogLevel } from "https://deno.land/x/blocks@1.48.7/deps.ts";

Defines the available internal logging levels for the diagnostic logger, the numeric values of the levels are defined to match the original values from the initial LogLevel to avoid compatibility/migration issues for any implementation that assume the numeric ordering.

Members

ALL = 9999

Used to set the logging level to include all logging

DEBUG = 70

General debug log message

ERROR = 30

Identifies an error scenario

INFO = 60

General informational log message

NONE = 0

Diagnostic Logging level setting to disable all logging (except and forced logs)

VERBOSE = 80

Detailed trace level logging should only be used for development, should only be set in a development environment.

WARN = 50

Identifies a warning scenario