You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ra...@apache.org on 2019/01/31 18:40:38 UTC

[trafficcontrol] branch master updated: Fix TM bad format string (#3293)

This is an automated email from the ASF dual-hosted git repository.

rawlin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new bc59464  Fix TM bad format string (#3293)
bc59464 is described below

commit bc59464d58e18eb5b41a7ea2671c6fcf1ae9da96
Author: Robert Butts <ro...@users.noreply.github.com>
AuthorDate: Thu Jan 31 11:40:34 2019 -0700

    Fix TM bad format string (#3293)
---
 traffic_monitor/health/cache.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/traffic_monitor/health/cache.go b/traffic_monitor/health/cache.go
index 1b34ac9..ac2c7dd 100644
--- a/traffic_monitor/health/cache.go
+++ b/traffic_monitor/health/cache.go
@@ -336,7 +336,7 @@ func getDeliveryServiceCachegroupAvailability(dsCacheStates map[tc.CacheName]tc.
 	for cache, available := range dsCacheStates {
 		cg, ok := serverCachegroups[cache]
 		if !ok {
-			log.Errorf("cache %v not found in cachegroups!")
+			log.Errorf("cache %v not found in cachegroups!\n", cache)
 			continue
 		}
 		if _, ok := cgAvail[cg]; !ok || available.IsAvailable {