Author: breser
Date: Sun Oct 21 18:31:42 2012
New Revision: 1400691
URL: http://svn.apache.org/viewvc?rev=1400691&view=rev
Log:
Improve warning message for inefficient revprop cache.
* subversion/libsvn_fs_fs/fs_fs.c:
(has_revprop_cache): Make it clear that revprop caching was disabled.
Modified:
subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c
Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c?rev=1400691&r1=1400690&r2=1400691&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Sun Oct 21 18:31:42 2012
@@ -3244,8 +3244,8 @@ has_revprop_cache(svn_fs_t *fs, apr_pool
* -> disable the revprop cache for good
*/
ffd->revprop_cache = NULL;
- log_revprop_cache_init_warning(fs, "Disable revprop caching for '%s'"
- " because it is inefficient.");
+ log_revprop_cache_init_warning(fs, "Revprop caching for '%s' disabled"
+ " because it would be inefficient.");
return FALSE;
}