up
This commit is contained in:
parent
cf6a5bf016
commit
8b2a0e003c
4
spot.go
4
spot.go
@ -4,6 +4,7 @@ import (
|
|||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
_ "github.com/mattn/go-sqlite3"
|
_ "github.com/mattn/go-sqlite3"
|
||||||
)
|
)
|
||||||
@ -49,10 +50,13 @@ func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChanToFlex chan Te
|
|||||||
contactRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath)
|
contactRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath)
|
||||||
defer contactRepo.db.Close()
|
defer contactRepo.db.Close()
|
||||||
|
|
||||||
|
start := time.Now()
|
||||||
contacts, _ := contactRepo.ListByCountry(spot.DXCC)
|
contacts, _ := contactRepo.ListByCountry(spot.DXCC)
|
||||||
contactsMode, _ := contactRepo.ListByCountryMode(spot.DXCC, spot.Mode)
|
contactsMode, _ := contactRepo.ListByCountryMode(spot.DXCC, spot.Mode)
|
||||||
contactsBand, _ := contactRepo.ListByCountryBand(spot.DXCC, spot.Band)
|
contactsBand, _ := contactRepo.ListByCountryBand(spot.DXCC, spot.Band)
|
||||||
contactsCall, _ := contactRepo.ListByCallSign(spot.DX, spot.Band, spot.Mode)
|
contactsCall, _ := contactRepo.ListByCallSign(spot.DX, spot.Band, spot.Mode)
|
||||||
|
elapsed := time.Since(start)
|
||||||
|
Log.Infof("Checking Db took: %s", elapsed)
|
||||||
|
|
||||||
if len(contacts) == 0 {
|
if len(contacts) == 0 {
|
||||||
switch spot.DXCC {
|
switch spot.DXCC {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user