On the issue-3220-dev branch...

* subversion/libsvn_repos/log.c
  (get_combined_mergeinfo_changes): Remove debugging output logic.

git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/issue-3220-dev@872223 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/subversion/libsvn_repos/log.c b/subversion/libsvn_repos/log.c
index d50c310..4ee0ed4 100644
--- a/subversion/libsvn_repos/log.c
+++ b/subversion/libsvn_repos/log.c
@@ -704,38 +704,6 @@
                                &added_mergeinfo_catalog,
                                fs, rev, subpool));
 
-#if 0
-  fprintf(stderr, "################################################\n");
-  fprintf(stderr, "###   Mergeinfo deltas for revision %ld\n", rev);
-  fprintf(stderr, "DELETED MERGEINFO:\n");
-  for (hi = apr_hash_first(pool, deleted_mergeinfo_catalog);
-       hi; hi = apr_hash_next(hi))
-    {
-      const void *key;
-      void *val;
-      svn_string_t *value;
-
-      /* The path is the key, the mergeinfo delta is the value. */
-      apr_hash_this(hi, &key, NULL, &val);
-      SVN_ERR(svn_mergeinfo_to_string(&value, val, pool));
-      fprintf(stderr, "%s ::: %s\n", (const char *)key, value->data);
-    }
-  fprintf(stderr, "ADDED MERGEINFO:\n");
-  for (hi = apr_hash_first(pool, added_mergeinfo_catalog);
-       hi; hi = apr_hash_next(hi))
-    {
-      const void *key;
-      void *val;
-      svn_string_t *value;
-
-      /* The path is the key, the mergeinfo delta is the value. */
-      apr_hash_this(hi, &key, NULL, &val);
-      SVN_ERR(svn_mergeinfo_to_string(&value, val, pool));
-      fprintf(stderr, "%s ::: %s\n", (const char *)key, value->data);
-    }
-  fprintf(stderr, "################################################\n");
-#endif
-
   /* Check our PATHS for any changes to their inherited mergeinfo.
      (We deal with changes to mergeinfo directly *on* the paths in the
      following loop.)  */