chiark / gitweb /
bzr2news: mention 'git log' command in debug output master
authorRichard Kettlewell <rjk@greenend.org.uk>
Sat, 28 Sep 2013 08:31:11 +0000 (09:31 +0100)
committerRichard Kettlewell <rjk@greenend.org.uk>
Sat, 28 Sep 2013 08:31:11 +0000 (09:31 +0100)
gateways/bzr2news.c

index 2d33919..b8197d3 100644 (file)
@@ -449,6 +449,7 @@ static void process_git_archive(const char *dir, const char *branch, int first)
   if(asprintf(&cmd, "git log --encoding=UTF-8 --reverse --date=raw %s",
               branch ? branch : "") < 0)
     fatal(errno, "asprintf");
+  D(("in %s: [%s]", dir, cmd));
   if(!(fp = popen(cmd, "r")))
     fatal(errno, "cannot popen git log");
   free(cmd);