MCPcopy Create free account
hub / github.com/CoderLuii/HolyClaude / write_debug

Function write_debug

scripts/notify.py:129–134  ·  view source on GitHub ↗
(stream, flag_enabled, urls, results)

Source from the content-addressed store, hash-verified

127
128
129def write_debug(stream, flag_enabled, urls, results):
130 print(f"[notify] flag: {'present' if flag_enabled else 'missing'}", file=stream)
131 print(f"[notify] urls: {len(urls)}", file=stream)
132 for url, accepted, reason in results:
133 status = "ok" if accepted else "failed"
134 print(f"[notify] {scheme_label(url)}: {status} ({reason})", file=stream)
135
136
137def run_dry_run(flag_file, environ, debug=False, stream=sys.stderr):

Callers 1

run_dry_runFunction · 0.85

Calls 1

scheme_labelFunction · 0.85

Tested by

no test coverage detected