(start time.Time, message string)
| 516 | } |
| 517 | |
| 518 | func (c *Client) logDebugTiming(start time.Time, message string) { |
| 519 | switch strings.ToLower(c.options.LogLevel) { |
| 520 | case "debug", "all": |
| 521 | log.Printf("%s elapsed=%s", message, time.Since(start)) |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | // ForceStop forcefully stops the CLI server without graceful cleanup. |
| 526 | // |