Members
(static) DEBUG_PREFIX :string
The prefix for the debug level message.
Type:
- string
(static) DONE_PREFIX :string
The prefix for the done level message.
Type:
- string
(static) ERROR_PREFIX :string
The prefix for the error level message.
Type:
- string
(static) INFO_PREFIX :string
The prefix for the info level message.
Type:
- string
(static) WARNING_PREFIX :string
The prefix for the warning level message.
Type:
- string
Methods
(static) debug(msg) → {void}
The function to log the debug level message to the console.
Parameters:
Name | Type | Description |
---|---|---|
msg |
string | The message string to be displayed. |
Returns:
- Type
- void
(static) done(msg) → {void}
The function to log the done level message to the console.
Parameters:
Name | Type | Description |
---|---|---|
msg |
string | The message string to be displayed. |
Returns:
- Type
- void
(static) error(msg) → {void}
The function to log the error level message to the console.
Parameters:
Name | Type | Description |
---|---|---|
msg |
string | The message string to be displayed. |
Returns:
- Type
- void
(static) info()
The function to log the info level message to the console.
(static) warn(msg) → {void}
The function to log the warning level message to the console.
Parameters:
Name | Type | Description |
---|---|---|
msg |
string | The message string to be displayed. |
Returns:
- Type
- void