summaryrefslogtreecommitdiff
path: root/subversion/libsvn_delta/debug_editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/libsvn_delta/debug_editor.h')
-rw-r--r--subversion/libsvn_delta/debug_editor.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/subversion/libsvn_delta/debug_editor.h b/subversion/libsvn_delta/debug_editor.h
index 2b031af..63c90d3 100644
--- a/subversion/libsvn_delta/debug_editor.h
+++ b/subversion/libsvn_delta/debug_editor.h
@@ -32,14 +32,19 @@ extern "C" {
/* Return a debug editor that wraps @a wrapped_editor.
*
* The debug editor simply prints an indication of what callbacks are being
- * called to @c stderr, and is only intended for use in debugging subversion
+ * called to @c stdout, and is only intended for use in debugging subversion
* editors.
+ *
+ * @a prefix, if non-null, is printed between "DBG: " and each indication.
+ *
+ * Note: Our test suite generally ignores stdout lines starting with "DBG:".
*/
svn_error_t *
svn_delta__get_debug_editor(const svn_delta_editor_t **editor,
void **edit_baton,
const svn_delta_editor_t *wrapped_editor,
void *wrapped_baton,
+ const char *prefix,
apr_pool_t *pool);
#ifdef __cplusplus