MCPcopy Create free account
hub / github.com/MiniCodeMonkey/chief / renderRetrying

Method renderRetrying

internal/tui/log.go:609–620  ·  view source on GitHub ↗

renderRetrying renders a retry message.

(entry LogEntry)

Source from the content-addressed store, hash-verified

607
608// renderRetrying renders a retry message.
609func (l *LogViewer) renderRetrying(entry LogEntry) []string {
610 retryStyle := lipgloss.NewStyle().
611 Foreground(WarningColor).
612 Bold(true)
613
614 text := entry.Text
615 if text == "" {
616 text = "Retrying..."
617 }
618
619 return []string{retryStyle.Render("🔄 " + text)}
620}
621
622// renderWatchdogTimeout renders a watchdog timeout message.
623func (l *LogViewer) renderWatchdogTimeout(entry LogEntry) []string {

Callers 1

renderEntryMethod · 0.95

Calls 1

RenderMethod · 0.45

Tested by

no test coverage detected