From e653925c844554d61b1efe5f791bc22153cbd0c2 Mon Sep 17 00:00:00 2001 From: Andrei Gherzan Date: Mon, 25 Jul 2022 19:55:58 +0100 Subject: [PATCH] mirror: Advertise destination repository in logs This is consistent with the way we advertise the source repository as well. Signed-off-by: Andrei Gherzan --- git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.go b/git.go index 90c8fd2..c99fb4a 100644 --- a/git.go +++ b/git.go @@ -234,7 +234,7 @@ func pushWithAuth(conf Config, logger *Logger, stagingRepo *git.Repository) erro return fmt.Errorf("failed configuring destination remote: %w", err) } - logger.Info("Pushing to destination...") + logger.Info("Pushing to", conf.DstRepo, "destination...") err = dst.Push(&git.PushOptions{ RemoteName: dstRemoteName,