MCPcopy
hub / github.com/langbot-app/LangBot / get_logs

Method get_logs

tests/e2e/utils/process_manager.py:182–186  ·  view source on GitHub ↗

Get stdout and stderr logs.

(self)

Source from the content-addressed store, hash-verified

180 return self.process is not None and self.process.poll() is None
181
182 def get_logs(self) -> tuple[str, str]:
183 """Get stdout and stderr logs."""
184 stdout = self._stdout_data.decode('utf-8', errors='replace')
185 stderr = self._stderr_data.decode('utf-8', errors='replace')
186 return stdout, stderr
187
188 def get_coverage_file(self) -> Optional[Path]:
189 """Get coverage data file path."""

Callers 1

langbot_processFunction · 0.95

Calls 1

decodeMethod · 0.45

Tested by 1

langbot_processFunction · 0.76