e3.2.1 Format type text changed to txt for consistency and clarity.

This commit is contained in:
2025-10-10 05:40:26 -04:00
parent 162541e53f
commit ce6b178855
4 changed files with 11 additions and 11 deletions

View File

@ -126,7 +126,7 @@ func logWithContext(ctx context.Context, logger *log.Logger, level string, msg s
## Output Formats
### Text Format (Human-Readable)
### Txt Format (Human-Readable)
Default format for development and debugging:
@ -135,7 +135,7 @@ Default format for development and debugging:
2024-01-15T10:30:45.234567890Z WARN Rate limit approaching user_id=42 requests=95 limit=100
```
Note: The text format does not add quotes around string values containing spaces. This ensures predictability for simple, space-delimited parsing tools. For logs where maintaining the integrity of such values is critical, `json` format is recommended.
Note: The txt format does not add quotes around string values containing spaces. This ensures predictability for simple, space-delimited parsing tools. For logs where maintaining the integrity of such values is critical, `json` format is recommended.
Configuration:
```go