From 31745320c8652d434d5a57e06852e743a1b52abd Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 20 Feb 2017 16:36:25 +0000 Subject: [PATCH] Log the rclone version at the end of the run - fixes #847 --- cmd/cmd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/cmd.go b/cmd/cmd.go index b9a407114..6b6d52a49 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -70,6 +70,7 @@ and configuration walkthroughs. * http://rclone.org/ `, PersistentPostRun: func(cmd *cobra.Command, args []string) { + fs.Debugf("rclone", "Version %q finishing with parameters %q", fs.Version, os.Args) runAtExitFunctions() }, }