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:
Diffstat (limited to 'internal/domain')
-rw-r--r--internal/domain/domain.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/domain/domain.go b/internal/domain/domain.go
index 3d7bc42d..8a4c159a 100644
--- a/internal/domain/domain.go
+++ b/internal/domain/domain.go
@@ -366,6 +366,7 @@ func (d *D) ServeFileHTTP(w http.ResponseWriter, r *http.Request) bool {
store, err := storage.New(project)
if err != nil {
+ println(err.Error())
httperrors.Serve500(w)
return true
}
@@ -393,6 +394,7 @@ func (d *D) ServeNotFoundHTTP(w http.ResponseWriter, r *http.Request) {
store, err := storage.New(project)
if err != nil {
+ println(err.Error())
httperrors.Serve500(w)
return
}