Skip to main content
Module

x/flowscripter_dynamic_plugin_framework/deps.ts

Dynamic plugin framework for Deno based on Javascript Modules and import() function.
Latest
import * as flowscripterDynamicPluginFramework from "https://deno.land/x/flowscripter_dynamic_plugin_framework@v1.1.4/deps.ts";

Namespaces

Logging library with the support for terminal and file outputs. Also provides interfaces for building custom loggers.

Classes

An object that encapsulates provided message and arguments as well some metadata that can be later used when formatting a message.

Enums

Get log level numeric values through enum constants. Defaults to INFO.

Variables

Handlers are responsible for actual output of log messages. When a handler is called by a logger, it firstly checks that LogRecord's level is not lower than level of the handler. If level check passes, handlers formats log record into string and outputs it to target.

Functions

Log with critical level, using default logger.

Log with debug level, using default logger.

Log with error level, using default logger.

Get a logger instance. If not specified name, get the default logger.

Log with info level, using default logger.

Setup logger config.

Log with warning level, using default logger.