diff options
author | kakwa <carpentier.pf@gmail.com> | 2015-11-28 15:22:10 +0100 |
---|---|---|
committer | kakwa <carpentier.pf@gmail.com> | 2015-11-28 15:22:10 +0100 |
commit | 1d7a1b6034e9e9a699812196c04cacba0d6eb957 (patch) | |
tree | 126a6d569362a6f412b75450a68b8c6cae5eab1b /cmd | |
parent | a59b1fcc21f35bafa16b65ac8c722e14d2dc925e (diff) | |
download | gitea-1d7a1b6034e9e9a699812196c04cacba0d6eb957.tar.gz gitea-1d7a1b6034e9e9a699812196c04cacba0d6eb957.zip |
add name of the dump file in last log message
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/dump.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dump.go b/cmd/dump.go index e8354784cf..90082667bb 100644 --- a/cmd/dump.go +++ b/cmd/dump.go @@ -93,5 +93,5 @@ func runDump(ctx *cli.Context) { log.Printf("Removing tmp work dir: %s", TmpWorkDir) os.RemoveAll(TmpWorkDir) - log.Println("Finish dumping!") + log.Printf("Finish dumping in file %s", fileName) } |