aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/caldav/plugin.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/caldav/plugin.go b/plugins/caldav/plugin.go
index 1915646..27c5663 100644
--- a/plugins/caldav/plugin.go
+++ b/plugins/caldav/plugin.go
@@ -41,7 +41,10 @@ func newPlugin(srv *koushin.Server) (koushin.Plugin, error) {
u.Scheme = "http"
}
if u.Scheme == "" {
- return nil, fmt.Errorf("caldav: discovery not yet implemented") // TODO
+ // TODO
+ err := fmt.Errorf("discovery not yet implemented")
+ srv.Logger().Printf("caldav: failed to discover CalDAV server: %v", err)
+ return nil, nil
}
if err := sanityCheckURL(u); err != nil {