From 7e04c9d0485b36e54b1eacf45045a295f2bd4d81 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 10 Jun 2014 15:40:21 +0200 Subject: [PATCH] Information about HTTP certificate issues --- cmd/syncthing/gui.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/syncthing/gui.go b/cmd/syncthing/gui.go index 2915bd7d4..89cdc5fb3 100644 --- a/cmd/syncthing/gui.go +++ b/cmd/syncthing/gui.go @@ -58,6 +58,8 @@ func startGUI(cfg config.GUIConfiguration, assetDir string, m *model.Model) erro if cfg.UseTLS { cert, err := loadCert(confDir, "https-") if err != nil { + l.Infoln("Loading HTTPS certificate:", err) + l.Infoln("Creating new HTTPS certificate", err) newCertificate(confDir, "https-") cert, err = loadCert(confDir, "https-") }