MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / section

Method section

parallel_orchestrator.py:77–83  ·  view source on GitHub ↗

Write a section header.

(self, title: str)

Source from the content-addressed store, hash-verified

75 f.write("\n")
76
77 def section(self, title: str):
78 """Write a section header."""
79 with self._lock:
80 with open(self.log_file, "a") as f:
81 f.write(f"\n{'='*60}\n")
82 f.write(f" {title}\n")
83 f.write(f"{'='*60}\n\n")
84
85
86# Global debug logger instance

Callers 2

_run_initializerMethod · 0.80
run_loopMethod · 0.80

Calls 1

writeMethod · 0.80

Tested by

no test coverage detected