diff --git a/main.go b/main.go index fe907af..624c830 100644 --- a/main.go +++ b/main.go @@ -42,11 +42,16 @@ func main() { cfg := NewConfig(cfgPath) log := NewLog() - log.Info("Running FlexDXCluster version 0.2") + log.Info("Running FlexDXCluster version 0.3") log.Infof("Callsign: %s", cfg.SQLite.Callsign) DeleteDatabase("./flex.sqlite", log) + log.Infof("Gotify Push Enabled: %v", cfg.Gotify.Enable) + if cfg.Gotify.Enable { + log.Infof("Gotify Push MewDXCC %v - NewBand %v - NewMode %v - NewBandAndMode %v", cfg.Gotify.NewDXCC, cfg.Gotify.NewBand, cfg.Gotify.NewMode, cfg.Gotify.NewBandAndMode) + } + // Load country.xml to get all the DXCC number Countries := LoadCountryFile()