From f722f03e753ba68b85a8b9e8d05c6328db438afc Mon Sep 17 00:00:00 2001 From: ZhdanovR Date: Mon, 22 Mar 2021 23:05:21 +0600 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BB=D0=BE=D0=B3=D0=BE=D0=B2?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=20=D1=80=D0=B0=D1=81=D0=BF=D0=B0=D0=BA?= =?UTF-8?q?=D0=BE=D0=B2=D0=BA=D0=B5=20=D0=B8=20=D0=BF=D0=B5=D1=80=D0=B5?= =?UTF-8?q?=D0=B8=D0=BC=D0=B5=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/get.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/get.go b/cmd/get.go index 0fc63ae..438b491 100644 --- a/cmd/get.go +++ b/cmd/get.go @@ -273,6 +273,7 @@ func (c *getCmd) extractFiles(files []string) error { multierr.Append(mErr, err) continue } + log.Infof("Path to extracting files <%d>", extractDir) if c.Rename { err := renameFiles(extractDir) @@ -306,7 +307,7 @@ func renameFiles(dir string) error { log.Errorf("Error rename file <%s> to <%s>: %s", oldName, newName, err.Error()) continue } - + log.Infof("New name files <%d>", newName) } return nil }