Hi for the prefect api endpoint api/logs/filter, a...
# ask-community
m
Hi for the prefect api endpoint api/logs/filter, anyone know what the level corresponds to? e.g. CRITCAL, INFO, etc.
Copy code
"level": {
      "ge_": 20,
      "le_": 50
    },
1
r
I think they correspond to the standard Python logging levels: https://docs.python.org/3/library/logging.html#logging-levels
1
m
Ah yes based on some logging I have it looks like it. thanks