Chore: capitalise log messages for app platform (#74336)

This commit is contained in:
Serge Zaitsev
2023-09-04 18:46:08 +02:00
committed by GitHub
parent eb93ebe0d0
commit bd12ce0cbc
18 changed files with 53 additions and 53 deletions
+1 -1
View File
@@ -210,7 +210,7 @@ func (h *DashboardHandler) DashboardDeleted(orgID int64, user *user.UserDisplayD
func (h *DashboardHandler) HasGitOpsObserver(orgID int64) bool {
count, err := h.ClientCount(orgID, GitopsChannel)
if err != nil {
logger.Error("error getting client count", "error", err)
logger.Error("Error getting client count", "error", err)
return false
}
return count > 0