Skip to content

Commit

Permalink
PB-1083: Amended the lint compliance change to logging-cfg-local.yml …
Browse files Browse the repository at this point in the history
…following PR review. -renamed all occurrences of true/false to True/False
  • Loading branch information
Sami Nouidri committed Nov 8, 2024
1 parent 09fa606 commit 271935a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions logging-cfg-local.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: 1
disable_existing_loggers: false # this allow to get logger at module level
disable_existing_loggers: False # this allow to get logger at module level

root:
handlers:
- console
- file-standard
- file-json
level: DEBUG
propagate: true
propagate: True

# Remove all handlers for werkzeug log entries - prevents duplicated logging
loggers:
Expand All @@ -29,8 +29,8 @@ loggers:
filters:
isotime:
(): logging_utilities.filters.TimeAttribute
isotime: false
utc_isotime: true
isotime: False
utc_isotime: True
flask:
(): logging_utilities.filters.flask_attribute.FlaskRequestAttribute
attributes:
Expand All @@ -50,7 +50,7 @@ formatters:
extra_fmt: " : path=%(flask_request_path)s headers=%(flask_request_headers)s payload=%(flask_request_json)s"
json:
(): logging_utilities.formatters.json_formatter.JsonFormatter
add_always_extra: false
add_always_extra: False
filter_attributes:
- utc_isotime
- flask_request_path
Expand All @@ -59,8 +59,8 @@ formatters:
- flask_request_headers
- flask_request_json
- flask_request_remote_addr
remove_empty: true
ignore_missing: true
remove_empty: True
ignore_missing: True
fmt:
time: utc_isotime
level: levelname
Expand Down

0 comments on commit 271935a

Please sign in to comment.