PrintError prints an error message
(err error)
| 64 | |
| 65 | // PrintError prints an error message |
| 66 | func (p *Printer) PrintError(err error) { |
| 67 | p.Printf("❌ %s", err) |
| 68 | } |
| 69 | |
| 70 | // PrintWarning prints a warning message on its own line. Used for non-fatal |
| 71 | // notices such as a turn that produced only reasoning or an empty response, |