update log4om

This commit is contained in:
2025-10-17 00:33:56 +05:30
parent b66ab53df4
commit 6705661d81
14 changed files with 230 additions and 50 deletions

View File

@@ -206,6 +206,11 @@ func (c *TCPClient) SetFilters() {
Log.Info("FT4: On")
}
if Cfg.Cluster.Beacon {
c.Write([]byte("set/beacon\r\n"))
Log.Info("Beacon: On")
}
if !Cfg.Cluster.FT8 {
c.Write([]byte("set/noft8\r\n"))
Log.Info("FT8: Off")
@@ -220,6 +225,11 @@ func (c *TCPClient) SetFilters() {
c.Write([]byte("set/noskimmer\r\n"))
Log.Info("Skimmer: Off")
}
if !Cfg.Cluster.Beacon {
c.Write([]byte("set/nobeacon\r\n"))
Log.Info("Beacon: Off")
}
}
func (c *TCPClient) ReadLine() {