You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2012/11/13 11:46:45 UTC

svn commit: r1408673 - /subversion/trunk/subversion/libsvn_delta/debug_editor.c

Author: danielsh
Date: Tue Nov 13 10:46:45 2012
New Revision: 1408673

URL: http://svn.apache.org/viewvc?rev=1408673&view=rev
Log:
Use the debug-output convention in the debug editor.

* subversion/libsvn_delta/debug_editor.c
  (write_indent): Prefix the line with "DBG:".

Modified:
    subversion/trunk/subversion/libsvn_delta/debug_editor.c

Modified: subversion/trunk/subversion/libsvn_delta/debug_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/debug_editor.c?rev=1408673&r1=1408672&r2=1408673&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/debug_editor.c (original)
+++ subversion/trunk/subversion/libsvn_delta/debug_editor.c Tue Nov 13 10:46:45 2012
@@ -52,6 +52,8 @@ write_indent(struct edit_baton *eb, apr_
 {
   int i;
 
+  /* This is DBG_FLAG from ../libsvn_subr/debug.c */
+  SVN_ERR(svn_stream_puts(eb->out, "DBG:"));
   for (i = 0; i < eb->indent_level; ++i)
     SVN_ERR(svn_stream_puts(eb->out, " "));