Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Günnewig <dev@fedux.org>2018-05-22 18:10:05 +0300
committerDennis Günnewig <dev@fedux.org>2018-05-22 18:15:12 +0300
commitbc7d254a1ef71f01bea3da4ba6d743497ff6b3d7 (patch)
tree21f0221febb3d787b3a88ef22e8bb8ecf5813189 /internal/domain
parent0db46101f988e182b0f4a3e4ce948bc19b76b615 (diff)
Fix logic for output of domains in debug mode
Diffstat (limited to 'internal/domain')
-rw-r--r--internal/domain/map.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/domain/map.go b/internal/domain/map.go
index ad38e84b..943f5c20 100644
--- a/internal/domain/map.go
+++ b/internal/domain/map.go
@@ -238,7 +238,7 @@ func Watch(rootDomain string, updater domainsUpdater, interval time.Duration) {
}
func logConfiguredDomains(dm Map) {
- if log.GetLevel() == log.DebugLevel {
+ if log.GetLevel() != log.DebugLevel {
return
}