From 3f3fd638b2daf6fe9aca93afbb6f7a121e1ef2ac Mon Sep 17 00:00:00 2001 From: Philippe Miossec Date: Thu, 10 Oct 2013 11:34:43 +0200 Subject: [PATCH] Display git-tfs command in the console when debug log is enable (to help support when someone report an error) --- GitTfs/GitTfs.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GitTfs/GitTfs.cs b/GitTfs/GitTfs.cs index a89b0edf..b5519866 100644 --- a/GitTfs/GitTfs.cs +++ b/GitTfs/GitTfs.cs @@ -39,6 +39,7 @@ namespace Sep.Git.Tfs var command = ExtractCommand(args); if(RequiresValidGitRepository(command)) AssertValidGitRepository(); var unparsedArgs = ParseOptions(command, args); + Trace.WriteLine("Command run:git tfs " + string.Join(" ", args)); return Main(command, unparsedArgs); }