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 package main
import ( import (
"embed"
"fmt" "fmt"
"html/template" "html/template"
"net/http" "net/http"
@ -10,10 +9,10 @@ import (
) )
//go:embed templates/* //go:embed templates/*
var tplFolder embed.FS // var tplFolder embed.FS
//go:embed images/* //go:embed images/*
var imgFolder embed.FS // var imgFolder embed.FS
var tmpl *template.Template var tmpl *template.Template
var listNew = []New{} var listNew = []New{}

View File

@ -149,10 +149,7 @@ func (c *TCPClient) ReadLine() {
Log.Info("Start receiving spots") Log.Info("Start receiving spots")
} }
// start := time.Now()
go ProcessTelnetSpot(spotRe, message, c.SpotChanToFlex, c.SpotChanToHTTPServer, c.Countries) 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 // Send the spot message to TCP server
if len(c.TCPServer.Clients) > 0 { if len(c.TCPServer.Clients) > 0 {

View File

@ -41,10 +41,6 @@ type Config struct {
SpotLife string `yaml:"spot_life"` SpotLife string `yaml:"spot_life"`
} `yaml:"flex"` } `yaml:"flex"`
Clublog struct {
Api string `yaml:"api"`
} `yaml:"clublog"`
TelnetServer struct { TelnetServer struct {
Host string `yaml:"host"` Host string `yaml:"host"`
Port string `yaml:"port"` Port string `yaml:"port"`

View File

@ -21,8 +21,6 @@ flex:
discovery: true discovery: true
ip: 10.10.10.120 #113.161.103.129 ip: 10.10.10.120 #113.161.103.129
spot_life: 600 spot_life: 600
clublog:
api: 5767f19333363a9ef432ee9cd4141fe76b8adf38
telnetserver: telnetserver:
host: 0.0.0.0 host: 0.0.0.0
port: 7301 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) spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC)
} }
} else { } else {
// Log.Debugf("Could not decode: %s", strings.Trim(spotRaw, "\n")) // Log.Infof("Could not decode: %s", strings.Trim(spotRaw, "\n"))
} }
} }