8000 Added documentation for feature/escaping-unicode-control-chars by cpjulia · Pull Request #771 · arangodb/docs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Added documentation for feature/escaping-unicode-control-chars #771

Merged
merged 17 commits into from
Oct 1, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 3.9/release-notes-new-features39.md
Co-authored-by: Jan <jsteemann@users.noreply.github.com>
  • Loading branch information
cpjulia and jsteemann authored Sep 22, 2021
commit d547c6da9c4ee8461484f4adda927f4a16c7b194
18 changes: 9 additions & 9 deletions 3.9/release-notes-new-features39.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,15 +270,15 @@ should be used.

- `--log.escape-control-chars`: this flag applies to control characters, which have hex codes below `\x20`,
and also the character DEL, with a hex code of `\x7f`. When the flag value is set to `false`, control
characters that have a visual representation will be retained and logged as-is.
Controls characters without a visual representation will be replaced by a space
character in the log. The same will happen to the `DEL` character (code `\x7f`),
For example, the control characer `\n` is visible, so a `\n` will be displayed in
the log, and the control character `BEL` is not visible, so a space will be displayed.
When the flag value is set to `true`, the hex code for the character is logged. For
example, the `BEL` character will be displayed as its hex code, `\x07`.
The default value for this flag is `true` for compatibility with
previous versions.
characters that have a visual representation will be retained and logged as-is.
Controls characters without a visual representation will be replaced by a space
character in the log. The same will happen to the `DEL` character (code `\x7f`),
For example, the control characer `\n` is visible, so a `\n` will be displayed in
the log, and the control character `BEL` is not visible, so a space will be displayed.
When the flag value is set to `true`, the hex code for the character is logged. For
example, the `BEL` character will be displayed as its hex code, `\x07`.
The default value for this flag is `true` for compatibility with
previous versions.

- `--log.escape-unicode-chars`: when its value is set to `false`, Unicode characters
will be retained, and written to the log as-is. For example, `犬` will
Expand Down
0