()
| 72 | } |
| 73 | |
| 74 | func setupClientLogging() { |
| 75 | log.SetFlags(0) |
| 76 | useColor := shouldUseColor(os.Stdout) |
| 77 | log.SetOutput(&clientLogWriter{out: os.Stdout, useColor: useColor}) |
| 78 | } |
| 79 | |
| 80 | func shortScriptKey(scriptURL string) string { |
| 81 | parts := strings.Split(strings.Trim(scriptURL, "/"), "/") |
no test coverage detected