MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / __init__

Method __init__

app/runtime_logging.py:89–94  ·  view source on GitHub ↗
(self, settings: Settings | None = None)

Source from the content-addressed store, hash-verified

87 """Persist structured JSONL flow events alongside standard logs."""
88
89 def __init__(self, settings: Settings | None = None) -> None:
90 self.settings = settings or get_settings()
91 self._lock = threading.Lock()
92 self.logger = logging.getLogger("glm_desk.runtime")
93 configure_logging(self.settings)
94 (self.settings.runtime_logs_dir / "accounts").mkdir(parents=True, exist_ok=True)
95
96 def start_run(
97 self,

Callers

nothing calls this directly

Calls 2

get_settingsFunction · 0.90
configure_loggingFunction · 0.85

Tested by

no test coverage detected