forked from Unstructured-IO/unstructured-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: sensible logging config (Unstructured-IO#64)
* chore: add sensible logging config * version bump * add to Dockerfile * add to non-docker Makefile target * make generate-api
- Loading branch information
Showing
6 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.0.8 | ||
|
||
* Sensible logging config | ||
|
||
## 0.0.7 | ||
|
||
* Minor version bump | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: 1 | ||
disable_existing_loggers: False | ||
formatters: | ||
default_format: | ||
"()": uvicorn.logging.DefaultFormatter | ||
format: '%(asctime)s %(name)s %(levelname)s %(message)s' | ||
access: | ||
"()": uvicorn.logging.AccessFormatter | ||
format: '%(asctime)s %(client_addr)s %(request_line)s - %(status_code)s' | ||
handlers: | ||
access_handler: | ||
formatter: access | ||
class: logging.StreamHandler | ||
stream: ext://sys.stderr | ||
standard_handler: | ||
formatter: default_format | ||
class: logging.StreamHandler | ||
stream: ext://sys.stderr | ||
loggers: | ||
uvicorn.error: | ||
level: INFO | ||
handlers: | ||
- standard_handler | ||
propagate: no | ||
# disable logging for uvicorn.error by not having a handler | ||
uvicorn.access: | ||
level: INFO | ||
handlers: | ||
- access_handler | ||
propagate: no | ||
# disable logging for uvicorn.access by not having a handler | ||
unstructured: | ||
level: INFO | ||
handlers: | ||
- standard_handler | ||
propagate: no | ||
unstructured_inference: | ||
level: DEBUG | ||
handlers: | ||
- standard_handler | ||
propagate: no | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
name: general | ||
version: 0.0.7 | ||
version: 0.0.8 |