doc: update README; update comments regarding open tasks and further features
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 54s

This commit is contained in:
2025-11-01 00:38:34 +01:00
parent a211aafed6
commit bd33f9c8f9
2 changed files with 7 additions and 11 deletions

View File

@@ -143,11 +143,9 @@ This will result in the following output:
For more details about the output customization see the configuration options of the `zlog` module. Following options are available:
- _timestamp_ (default: `true`): Prepend the current timestamp before each log message.
- _stderr_ (default: `true`): Print log messages to stderr.
> [!caution]
> Currently not working as log output is not appended and only the last log message will be in the resulting log file! This is a not-yet-implemented feature of the standard library of zig! See this [issue](https://github.com/ziglang/zig/issues/14375) for more details.
> For now you should instead leave this option as it is and pipe the corresponding stderr outputs to a logfile instead.
- *timestamp* (default: `true`): Prepend the current timestamp before each log message.
- *stderr* (default: `true`): Print log messages to stderr.
- *file* (default: `""`): File path to log messages to. Without a path no log file will be created and logged to. Can be used in parallel with the *stderr* option
## Tips