diff --git a/HTTPServer.go b/HTTPServer.go index 9ad5562..1da5147 100644 --- a/HTTPServer.go +++ b/HTTPServer.go @@ -1,7 +1,6 @@ package main import ( - "embed" "fmt" "html/template" "net/http" @@ -10,10 +9,10 @@ import ( ) //go:embed templates/* -var tplFolder embed.FS +// var tplFolder embed.FS //go:embed images/* -var imgFolder embed.FS +// var imgFolder embed.FS var tmpl *template.Template var listNew = []New{} diff --git a/TCPClient.go b/TCPClient.go index e08959f..1cf1bc2 100644 --- a/TCPClient.go +++ b/TCPClient.go @@ -149,10 +149,7 @@ func (c *TCPClient) ReadLine() { Log.Info("Start receiving spots") } - // start := time.Now() go ProcessTelnetSpot(spotRe, message, c.SpotChanToFlex, c.SpotChanToHTTPServer, c.Countries) - // elapsed := time.Since(start) - // Log.Infof("Total time for processing spot: %s", elapsed) // Send the spot message to TCP server if len(c.TCPServer.Clients) > 0 { diff --git a/config.go b/config.go index e03f181..364b15e 100644 --- a/config.go +++ b/config.go @@ -41,10 +41,6 @@ type Config struct { SpotLife string `yaml:"spot_life"` } `yaml:"flex"` - Clublog struct { - Api string `yaml:"api"` - } `yaml:"clublog"` - TelnetServer struct { Host string `yaml:"host"` Port string `yaml:"port"` diff --git a/config.yml b/config.yml index 08562f1..5eb6f69 100644 --- a/config.yml +++ b/config.yml @@ -21,8 +21,6 @@ flex: discovery: true ip: 10.10.10.120 #113.161.103.129 spot_life: 600 -clublog: - api: 5767f19333363a9ef432ee9cd4141fe76b8adf38 telnetserver: host: 0.0.0.0 port: 7301 diff --git a/spot.go b/spot.go index 379b06f..1de001c 100644 --- a/spot.go +++ b/spot.go @@ -126,7 +126,7 @@ func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChanToFlex chan Te spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) } } else { - // Log.Debugf("Could not decode: %s", strings.Trim(spotRaw, "\n")) + // Log.Infof("Could not decode: %s", strings.Trim(spotRaw, "\n")) } }