diff --git a/spot.go b/spot.go index 71c83d3..ab98605 100644 --- a/spot.go +++ b/spot.go @@ -4,6 +4,7 @@ import ( "regexp" "strconv" "strings" + "time" _ "github.com/mattn/go-sqlite3" ) @@ -49,10 +50,13 @@ func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChanToFlex chan Te contactRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath) defer contactRepo.db.Close() + start := time.Now() contacts, _ := contactRepo.ListByCountry(spot.DXCC) contactsMode, _ := contactRepo.ListByCountryMode(spot.DXCC, spot.Mode) contactsBand, _ := contactRepo.ListByCountryBand(spot.DXCC, spot.Band) contactsCall, _ := contactRepo.ListByCallSign(spot.DX, spot.Band, spot.Mode) + elapsed := time.Since(start) + Log.Infof("Checking Db took: %s", elapsed) if len(contacts) == 0 { switch spot.DXCC {