From 8b2a0e003cb64deb3a0e4a80c1e3d23bddf292c6 Mon Sep 17 00:00:00 2001 From: Gregory Salaun Date: Thu, 24 Oct 2024 22:04:58 +0700 Subject: [PATCH] up --- spot.go | 4 ++++ 1 file changed, 4 insertions(+) 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 {