From 34a6f492e571f30c99904a7684a1bdfce6364eb2 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Tue, 14 Nov 2017 13:11:00 -0500 Subject: [PATCH] Log restore start/end Signed-off-by: Andy Goldstein --- pkg/controller/restore_controller.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/controller/restore_controller.go b/pkg/controller/restore_controller.go index 54a008d7d..adea632af 100644 --- a/pkg/controller/restore_controller.go +++ b/pkg/controller/restore_controller.go @@ -391,7 +391,9 @@ func (controller *restoreController) runRestore(restore *api.Restore, bucket str } }() + logContext.Info("starting restore") restoreWarnings, restoreErrors = controller.restorer.Restore(restore, backup, backupFile, logFile) + logContext.Info("restore completed") // Try to upload the log file. This is best-effort. If we fail, we'll add to the ark errors.