log4j Log Levels and Their Relevance in PoolParty
log4j Log Levels and Their Relevance in PoolParty
You can find the documentation of the log4j log levels here. The following table gives an overview of the log levels used in PoolParty ordered by rank.
Log Level | Description | PoolParty |
---|---|---|
| The | Only used for dumps of data structures and stuff that produces a lot of logging output. for example: Returned HTTP request body: <...> |
| The | More detailed checkpoints for tracing through a method/process, used for debugging. for example: Found config file and reading it in |
| The | Major checkpoints in the code, like invocation of a method or initialization of a process. for example: Loading plugins at plugin directory XX |
| The | A error that does not prevent the system from functioning as intended; the system can handle the error itself. for example: No index found, a new one has to be created |
| The | Standard error level; a function does not work as intended, but it doesn't affect the entire system. for example: Exception while evaluating a query |
| The | Very severe errors that crash the entire system or stop it from functioning. for example: No connection to the triple store, essential components can't be loaded, etc. |