Skip to content

Commit 8d9b3a2

Browse files
committed
fix documented log levels
1 parent 714275f commit 8d9b3a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/arcticdb/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def make_loggers_config(
174174
----------
175175
default_level: str
176176
Default log level for all the loggers unless overriden with specific_log_levels.
177-
Valid values are "DEBUG", "INFO", "WARN", "ERROR".
177+
Valid values are "TRACE" (most verbose), "DEBUG", "INFO", "WARN", "ERROR", "CRITICAL", "OFF" (no logging).
178178
specific_log_levels: Optional[Dict[str, str]]
179179
Optional overrides for specific logger(s).
180180
The possible logger names can be found in `arcticdb.log.logger_by_name.keys()` (subject to change).
@@ -230,7 +230,7 @@ def set_log_level(
230230
----------
231231
default_level: str
232232
Default log level for all the loggers unless overriden with specific_log_levels.
233-
Valid values are "DEBUG", "INFO", "WARN", "ERROR".
233+
Valid values are "TRACE" (most verbose), "DEBUG", "INFO", "WARN", "ERROR", "CRITICAL", "OFF" (no logging).
234234
specific_log_levels: Optional[Dict[str, str]]
235235
Optional overrides for specific logger(s).
236236
The possible logger names can be found in `arcticdb.log.logger_by_name.keys()` (subject to change).

0 commit comments

Comments
 (0)