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:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-09-02 09:09:04 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-09-02 09:09:04 +0300
commit996ff49d97dfb9986600548f68147997e0060754 (patch)
tree7dbdbdbec7f9c8b9f6dbb388aadea395eb856354 /main.go
parentae98765937346a5e3675f5276e3f020d1f1c6369 (diff)
fix: switch to a warning to avoid breaking production
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 7f2529dd..f2f1d69b 100644
--- a/main.go
+++ b/main.go
@@ -57,7 +57,7 @@ func appMain() {
if config.Sentry.DSN != "" {
err := initErrorReporting(config.Sentry.DSN, config.Sentry.Environment)
if err != nil {
- log.WithError(err).Fatal("Failed to initialize errortracking")
+ log.WithError(err).Warn("Failed to initialize errortracking")
}
}