hedit/log

Functions to write to the HEdit log.

To view the log, you can use the :log command, or alternatively you can start HEdit with the following arguments to make it write the logs to the given external file descriptor:

hedit --debug-fd 3 --debug-colors

Methods

inner debug(…args)

Emits a message to the log with DEBUG severity.

Parameters:
Name Type Attributes Description
args * <repeatable>

Values to output to the log.

inner error(…args)

Emits a message to the log with ERROR severity. Messages written with this verity will be shown in the status bar.

Parameters:
Name Type Attributes Description
args * <repeatable>

Values to output to the log.

inner fatal(…args)

Emits a message to the log with FATAL severity. Messages written with this verity will be shown in the status bar.

Parameters:
Name Type Attributes Description
args * <repeatable>

Values to output to the log.

inner info(…args)

Emits a message to the log with INFO severity.

Parameters:
Name Type Attributes Description
args * <repeatable>

Values to output to the log.

inner warn(…args)

Emits a message to the log with WARN severity.

Parameters:
Name Type Attributes Description
args * <repeatable>

Values to output to the log.