MCPcopy Create free account
hub / github.com/su-kaka/gcli2api / _start_writer_thread

Function _start_writer_thread

log.py:182–188  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

180
181
182def _start_writer_thread():
183 global _writer_thread, _writer_running
184
185 if _writer_thread is None or not _writer_thread.is_alive():
186 _writer_running = True
187 _writer_thread = threading.Thread(target=_log_writer_worker, daemon=True, name="LogWriter")
188 _writer_thread.start()
189
190
191def _stop_writer_thread():

Callers 1

log.pyFile · 0.85

Calls 1

startMethod · 0.80

Tested by

no test coverage detected