From d51364a897cdd3e04a0187e365196f961dc8d515 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 8 Sep 2014 14:21:13 -0700 Subject: [PATCH] Better logging for checkpoint --- checkpoint.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/checkpoint.go b/checkpoint.go index dcd567274..57833924a 100644 --- a/checkpoint.go +++ b/checkpoint.go @@ -14,6 +14,7 @@ import ( func runCheckpoint(c *config) { // If the user doesn't want checkpoint at all, then return. if c.DisableCheckpoint { + log.Printf("[INFO] Checkpoint disabled. Not running.") return } @@ -30,6 +31,7 @@ func runCheckpoint(c *config) { signaturePath := filepath.Join(configDir, "checkpoint_signature") if c.DisableCheckpointSignature { + log.Printf("[INFO] Checkpoint signature disabled") signaturePath = "" }