(logLine string)
| 1127 | } |
| 1128 | |
| 1129 | func trimLogLine(logLine string) string { |
| 1130 | parts := strings.SplitN(logLine, " ", 2) |
| 1131 | if len(parts) > 1 { |
| 1132 | return parts[1] |
| 1133 | } |
| 1134 | return logLine |
| 1135 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…