File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.
1212
1313### Fixed
1414- Silenced verbose httpx/httpcore logs that spammed 60+ lines per file upload
15+ - Silenced Tika startup warnings ("Failed to see startup log message; retrying...")
1516
1617## [ 1.1.4] - 2025-12-02
1718
Original file line number Diff line number Diff line change 2525# Silence verbose HTTP client logs (httpx logs every single request)
2626logging .getLogger ("httpx" ).setLevel (logging .WARNING )
2727logging .getLogger ("httpcore" ).setLevel (logging .WARNING )
28+ # Silence Tika startup warnings ("Failed to see startup log message; retrying...")
29+ logging .getLogger ("tika" ).setLevel (logging .ERROR )
2830
2931logger = logging .getLogger (__name__ )
3032
You can’t perform that action at this time.
0 commit comments