diff --git a/cmd/parse_line.go b/cmd/parse_line.go index c7baa54..b7f18f5 100644 --- a/cmd/parse_line.go +++ b/cmd/parse_line.go @@ -40,11 +40,11 @@ type LogLine struct { QSLmsg string } +var regexpIsBand = regexp.MustCompile("m$") // ParseLine cuts a FLE line into useful bits func ParseLine(inputStr string, previousLine LogLine) (logLine LogLine, errorMsg string){ //TODO: input null protection? - regexpIsBand, _ := regexp.Compile("m$") logLine = previousLine