This commit is contained in:
shoopea 2020-06-25 17:34:36 +02:00
parent 7c512a5a2f
commit 73f4ba51b2

View File

@ -336,6 +336,7 @@ func loadMsgParsingRules() (m map[int]MessageParsingRule, err error) {
log.Println("Loading message parsing rules...")
m = make(map[int]MessageParsingRule)
count := int(0)
countCommand := int(0)
defer func() {
if rec := recover(); rec != nil {
@ -368,7 +369,12 @@ func loadMsgParsingRules() (m map[int]MessageParsingRule, err error) {
m[count] = *i
// log.Printf("New rule : %s\n", rule)
count++
if botCommand {
countCommand++
}
}
log.Printf("Loaded %d rules (%d commands)\n", count, countCommand)
return m, nil
}