Tabulify - Log Level

Undraw Text Files

Tabulify - Log Level

About

Tabulify supports 5 levels of log.

Values

Level Value Description
error Show only the error log
warn Show the warning log and all level above (ie error)
tip Show the tip log and all log above (ie error and warning)
info Show the info logs and all level above (ie error, warning and tip)
fine Show all logs

Management

Default

By default, the log level is the info level.

log level is a global attribute that sets the log level.

Set

You can change the log level:

tabul data list --log-level tip
env:
  log-level: tip
export TABUL_LOG_LEVEL=tip

Note

Advanced Log configuration

It's possible to define the log level by module/class with the java util logging framework known as JUL.

java -Djava.util.logging.config.file=/path/to/logging.properties ...

For more information, you can check the official documentation.

Task Runner