mirror of
https://github.com/theroyallab/tabbyAPI.git
synced 2026-03-14 15:57:27 +00:00
Logger: Escape tags
Angle brackets should be escaped to avoid mistaken color formatting. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
@@ -53,7 +53,7 @@ def _log_formatter(record: dict) -> str:
|
||||
message = unwrap(record.get("message"), "")
|
||||
|
||||
# Replace once loguru allows for turning off str.format
|
||||
message = message.replace("{", "{{").replace("}", "}}")
|
||||
message = message.replace("{", "{{").replace("}", "}}").replace("<", "\<")
|
||||
lines = message.splitlines()
|
||||
|
||||
fmt = ""
|
||||
|
||||
Reference in New Issue
Block a user