PrintWelcomeMessage prints the welcome message
(appName string)
| 59 | |
| 60 | // PrintWelcomeMessage prints the welcome message |
| 61 | func (p *Printer) PrintWelcomeMessage(appName string) { |
| 62 | p.Printf("\n------- Welcome to %s! -------\n(Ctrl+C to stop the agent and exit)\n\n", bold(appName)) |
| 63 | } |
| 64 | |
| 65 | // PrintError prints an error message |
| 66 | func (p *Printer) PrintError(err error) { |