utils/log

Methods

(inner) error(…args)

Source:

Generates an error to the JavaScript console. This is virtually identical to console.error, however it can safely be used in browsers which do not support it.

Parameters:
Name Type Attributes Description
args * <repeatable>

(inner) log(…args)

Source:

Generates a log message to the JavaScript console. This is virtually identical to console.log, however it can safely be used in browsers which do not support it.

Parameters:
Name Type Attributes Description
args * <repeatable>

(inner) warn(…args)

Source:

Generates a warning to the JavaScript console. This is virtually identical to console.warn, however it can safely be used in browsers which do not support it.

Parameters:
Name Type Attributes Description
args * <repeatable>