mirror of
https://codeberg.org/forgejo/docs.git
synced 2024-11-21 17:36:59 -05:00
admin: logging-documentation: clarify COLORIZE
setting
Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
This commit is contained in:
parent
7c5ef2e7e2
commit
13be414998
1 changed files with 7 additions and 4 deletions
|
@ -111,7 +111,8 @@ Certain configuration is common to all modes of log output:
|
||||||
- `MODE` is the mode of the log output writer. It will default to the mode name in the ini section. Thus `[log.console]` will default to `MODE = console`.
|
- `MODE` is the mode of the log output writer. It will default to the mode name in the ini section. Thus `[log.console]` will default to `MODE = console`.
|
||||||
- `LEVEL` is the lowest level that this output will log.
|
- `LEVEL` is the lowest level that this output will log.
|
||||||
- `STACKTRACE_LEVEL` is the lowest level that this output will print a stacktrace.
|
- `STACKTRACE_LEVEL` is the lowest level that this output will print a stacktrace.
|
||||||
- `COLORIZE` will default to `true` for `console` as described, otherwise it will default to `false`.
|
- `COLORIZE` will default to `true` for `console` if writing to the terminal
|
||||||
|
(see below), otherwise it will default to `false`.
|
||||||
|
|
||||||
#### `EXPRESSION`
|
#### `EXPRESSION`
|
||||||
|
|
||||||
|
@ -150,9 +151,11 @@ Possible values are:
|
||||||
In this mode the logger will forward log messages to the stdout and
|
In this mode the logger will forward log messages to the stdout and
|
||||||
stderr streams attached to the Forgejo process.
|
stderr streams attached to the Forgejo process.
|
||||||
|
|
||||||
For loggers in console mode, `COLORIZE` will default to `true` if not
|
For loggers in console mode, `COLORIZE` will default to `true` when appropriate:
|
||||||
on windows, or the Windows terminal can be set into ANSI mode or is a
|
|
||||||
cygwin or Msys pipe.
|
- not on Windows, if the output is connected to a tty;
|
||||||
|
- on Windows, if the output is connected to either a Windows terminal
|
||||||
|
that can be switched into ANSI mode (Windows 10+), or a Cygwin/MSYS terminal.
|
||||||
|
|
||||||
Settings:
|
Settings:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue