We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d4205 commit a5b39efCopy full SHA for a5b39ef
services/director/src/simcore_service_director/core/settings.py
@@ -154,6 +154,11 @@ def _validate_substitutions(cls, v):
154
155
return v
156
157
+ @validator("DIRECTOR_LOGLEVEL", pre=True)
158
+ @classmethod
159
+ def _valid_log_level(cls, value: str) -> str:
160
+ return cls.validate_log_level(value)
161
+
162
163
def get_application_settings(app: FastAPI) -> ApplicationSettings:
164
return cast(ApplicationSettings, app.state.settings)
0 commit comments