Merge pull request #2076 from walkerwmanuel/GRA-1270-startup-log-rework

Added more accurate startup logs
This commit is contained in:
dcarns 2023-02-27 15:22:54 -05:00 committed by GitHub
commit 26df6f4016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -165,9 +165,14 @@ func startControllers() {
// Should we be using a context vice a waitgroup????????????
func runMessageQueue(wg *sync.WaitGroup) {
defer wg.Done()
brokerHost, secure := servercfg.GetMessageQueueEndpoint()
logger.Log(0, "connecting to mq broker at", brokerHost, "with TLS?", fmt.Sprintf("%v", secure))
brokerHost, _ := servercfg.GetMessageQueueEndpoint()
logger.Log(0, "connecting to mq broker at", brokerHost)
mq.SetupMQTT()
if mq.IsConnected() {
logger.Log(0, "connected to MQ Broker")
} else {
logger.FatalLog("error connecting to MQ Broker")
}
ctx, cancel := context.WithCancel(context.Background())
go mq.Keepalive(ctx)
go func() {

View file

@ -402,7 +402,7 @@ func getCustomDNS(network string) []models.DNSUpdate {
func sendPeers() {
hosts, err := logic.GetAllHosts()
if err != nil {
if err != nil && len(hosts) > 0 {
logger.Log(1, "error retrieving networks for keepalive", err.Error())
}