From 438531d66704c90ed5168ec82b5631a1682d4a97 Mon Sep 17 00:00:00 2001 From: xenolf Date: Wed, 11 Nov 2015 00:10:08 +0100 Subject: [PATCH] Do not exit on domain failure, only log it. --- cli_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli_handlers.go b/cli_handlers.go index b938f9d1..e0e9e891 100644 --- a/cli_handlers.go +++ b/cli_handlers.go @@ -128,7 +128,7 @@ func run(c *cli.Context) { certs, failures := client.ObtainCertificates(c.GlobalStringSlice("domains"), true) if len(failures) > 0 { for k, v := range failures { - logger().Fatalf("[%s] Could not obtain certificates\n\t%v", k, v) + logger().Printf("[%s] Could not obtain certificates\n\t%v", k, v) } }