Skip to content

Commit ac14071

Browse files
authored
Run service with log level INFO by default (#462)
* Run service with log level INFO by default * Update secrets baseline
1 parent df2e160 commit ac14071

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Environment variables for the local development environment
22
ENV=local
3+
LOG_LEVEL=debug
34
APP_RELOAD=True
45
APP_DEBUG=True
56

.secrets.baseline

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@
106106
"filename": ".env.example",
107107
"hashed_secret": "4b9a4ce92b6a01a4cd6ee1672d31c043f2ae79ab",
108108
"is_verified": false,
109-
"line_number": 8
109+
"line_number": 9
110110
},
111111
{
112112
"type": "Secret Keyword",
113113
"filename": ".env.example",
114114
"hashed_secret": "77ea6398f252999314d609a708842a49fc43e055",
115115
"is_verified": false,
116-
"line_number": 11
116+
"line_number": 12
117117
}
118118
],
119119
"README.md": [
@@ -126,5 +126,5 @@
126126
}
127127
]
128128
},
129-
"generated_at": "2023-04-06T17:29:22Z"
129+
"generated_at": "2023-04-06T18:13:58Z"
130130
}

jbi/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Settings(BaseSettings):
4646
bugzilla_api_key: str
4747

4848
# Logging
49-
log_level: str = "debug"
49+
log_level: str = "info"
5050

5151
# Sentry
5252
sentry_dsn: Optional[SentryDsn]

0 commit comments

Comments
 (0)