Home Manual Reference Source
import AbstractLogger from 'ievv_jsbase/lib/log/AbstractLogger'
public class | source

AbstractLogger

Direct Subclass:

Logger

Member Summary

Public Members
public get

Exposes console.log.

public get

Exposes console.error.

public get

Exposes console.log.

public get

isDebug: *

Returns true if loglevel is higher than or equal to LogLevels#DEBUG.

public get

isError: *

Returns true if loglevel is higher than or equal to LogLevels#ERROR.

public get

isInfo: *

Returns true if loglevel is higher than or equal to LogLevels#INFO.

public get

Returns true if loglevel is higher than or equal to LogLevels#WARNING.

public get

Exposes console.warn.

Method Summary

Public Methods
public

Public Members

public get debug: Function: * source

Exposes console.log. Will only print if current level is higher than or equal to LogLevels#DEBUG.

Return:

Function

console.log

public get error: Function: * source

Exposes console.error. Will only print if current level is higher than or equal to LogLevels#ERROR.

Return:

Function

console.error

public get info: Function: * source

Exposes console.log. Will only print if current level is higher than or equal to LogLevels#INFO.

Return:

Function

console.log

public get isDebug: * source

Returns true if loglevel is higher than or equal to LogLevels#DEBUG.

public get isError: * source

Returns true if loglevel is higher than or equal to LogLevels#ERROR.

public get isInfo: * source

Returns true if loglevel is higher than or equal to LogLevels#INFO.

public get isWarning: * source

Returns true if loglevel is higher than or equal to LogLevels#WARNING.

public get warning: Function: * source

Exposes console.warn. Will only print if current level is higher than or equal to LogLevels#WARNING.

Return:

Function

console.warn

Public Methods

public getLogLevel() source