From 3b146eda0d18c2bfe61a0cbee12acfd77900ea71 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Sun, 6 Mar 2016 22:04:12 +0000 Subject: [PATCH] Clarify GUI stuff (fixes #2819) --- cmd/syncthing/gui.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/syncthing/gui.go b/cmd/syncthing/gui.go index 93afa689..3cd66941 100644 --- a/cmd/syncthing/gui.go +++ b/cmd/syncthing/gui.go @@ -267,8 +267,8 @@ func (s *apiService) Serve() { defer s.fss.Stop() s.fss.ServeBackground() - l.Infoln("API listening on", listener.Addr()) - l.Infoln("GUI URL is", guiCfg.URL()) + l.Infoln("GUI and API listening on", listener.Addr()) + l.Infoln("Access the GUI via the following URL:", guiCfg.URL()) if s.started != nil { // only set when run by the tests close(s.started)