remove clublog

This commit is contained in:
Gregory Salaun 2024-10-31 15:28:54 +07:00
parent ff43b9c150
commit c86f531313
5 changed files with 3 additions and 13 deletions

View File

@ -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{}

View File

@ -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 {

View File

@ -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"`

View File

@ -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

View File

@ -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"))
}
}