logLine writes a line to the log file.
(line string)
| 491 | |
| 492 | // logLine writes a line to the log file. |
| 493 | func (l *Loop) logLine(line string) { |
| 494 | if l.logFile != nil { |
| 495 | l.logFile.WriteString(line + "\n") |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | // Stop terminates the current agent process and stops the loop. |
| 500 | func (l *Loop) Stop() { |
no outgoing calls