diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
commit | cf46733632c7279a9fd0fe6ce26f9185a4ae82a9 (patch) | |
tree | da27775a2161723ef342e91af41a8b51fedef405 /subversion/libsvn_delta/debug_editor.h | |
parent | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (diff) | |
download | subversion-tarball-master.tar.gz |
subversion-1.9.7HEADsubversion-1.9.7master
Diffstat (limited to 'subversion/libsvn_delta/debug_editor.h')
-rw-r--r-- | subversion/libsvn_delta/debug_editor.h | 7 |
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 |