Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Log

import { Log } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts";
class Log {
constructor(source: any | string);
private className: string | null;
public logOptions: LogOptions;
 
private emitLogMessage(
msgType: MsgType,
msg: string,
supportingDetails: any[],
);
public compiler(
msg: string,
msgType: MsgType,
...supportingDetails: any[],
): void;
public debug(msg: string, ...supportingDetails: any[]): void;
public error(msg: string, ...supportingDetails: any[]): void;
public info(msg: string, ...supportingDetails: any[]): void;
public warn(msg: string, ...supportingDetails: any[]): void;
 
static public getLogger(source: any);
}

§Constructors

§
new Log(source: any | string)
[src]

§Properties

§
className: string | null
[src]
§
logOptions: LogOptions
[src]

§Methods

§
emitLogMessage(msgType: MsgType, msg: string, supportingDetails: any[]) private
[src]
§
compiler(msg: string, msgType: MsgType, ...supportingDetails: any[]): void
[src]
§
debug(msg: string, ...supportingDetails: any[]): void
[src]
§
error(msg: string, ...supportingDetails: any[]): void
[src]
§
info(msg: string, ...supportingDetails: any[]): void
[src]
§
warn(msg: string, ...supportingDetails: any[]): void
[src]

§Static Methods

§
getLogger(source: any)
[src]