MCPcopy Index your code
hub / github.com/ComposioHQ/composio / LogLevel

Class LogLevel

python/composio/utils/logging.py:30–40  ·  view source on GitHub ↗

Logging level.

Source from the content-addressed store, hash-verified

28
29
30class LogLevel(Enum):
31 """Logging level."""
32
33 CRITICAL = "critical"
34 FATAL = "fatal"
35 ERROR = "error"
36 WARNING = "warning"
37 WARN = "warn"
38 INFO = "info"
39 DEBUG = "debug"
40 NOTSET = "notset"
41
42
43_LEVELS: t.Dict[LogLevel, int] = {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…