Author: stsp
Date: Thu Nov 24 16:40:53 2011
New Revision: 1205924

URL: http://svn.apache.org/viewvc?rev=1205924&view=rev
Log:
On the moves-scan-log branch, remove debugging output.

* subversion/libsvn_client/update.c
  (get_repos_moves): Remove debug output. The same information is now
   printed by the conflict callback.

Modified:
    subversion/branches/moves-scan-log/subversion/libsvn_client/update.c

Modified: subversion/branches/moves-scan-log/subversion/libsvn_client/update.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/moves-scan-log/subversion/libsvn_client/update.c?rev=1205924&r1=1205923&r2=1205924&view=diff
==============================================================================
--- subversion/branches/moves-scan-log/subversion/libsvn_client/update.c 
(original)
+++ subversion/branches/moves-scan-log/subversion/libsvn_client/update.c Thu 
Nov 24 16:40:53 2011
@@ -505,31 +505,6 @@ get_repos_moves(void *baton,
       b->ctx->notify_func2(b->ctx->notify_baton2, notify, scratch_pool);
     }
 
-#ifdef SVN_DEBUG
-  {
-    apr_hash_index_t *hi;
-    for (hi = apr_hash_first(scratch_pool, lrb.moves);
-         hi; hi = apr_hash_next(hi))
-      {
-        apr_array_header_t *moves_in_rev = svn__apr_hash_index_val(hi);
-        int i;
-        
-        for (i = 0; i < moves_in_rev->nelts; i++)
-          {
-            svn_wc_repos_move_info_t *move_info;
-            
-            move_info = APR_ARRAY_IDX(moves_in_rev, i,
-                                      svn_wc_repos_move_info_t *);
-            SVN_DBG(("found server-side move in r%ld: '%s@%ld' -> '%s'\n",
-                     move_info->revision,
-                     move_info->moved_from_repos_relpath,
-                     move_info->copyfrom_rev,
-                     move_info->moved_to_repos_relpath));
-          }
-      }
-  }
-#endif
-
   if (moves)
     *moves = lrb.moves;
 


Reply via email to