MCPcopy Create free account
hub / github.com/hunvreus/devpush / parse_logs

Method parse_logs

app/models.py:844–849  ·  view source on GitHub ↗

Parse raw build logs into structured format.

(self)

Source from the content-addressed store, hash-verified

842 return f"<Deployment {self.id}>"
843
844 def parse_logs(self):
845 """Parse raw build logs into structured format."""
846 if not self.build_logs:
847 return []
848
849 return [parse_log(log) for log in self.build_logs.splitlines()]
850
851 @property
852 def parsed_logs(self):

Callers 1

parsed_logsMethod · 0.95

Calls 1

parse_logFunction · 0.90

Tested by

no test coverage detected