From: <tho...@us...> - 2013-10-29 14:01:00
|
Revision: 7496 http://bigdata.svn.sourceforge.net/bigdata/?rev=7496&view=rev Author: thompsonbry Date: 2013-10-29 14:00:53 +0000 (Tue, 29 Oct 2013) Log Message: ----------- reduced WARN => INFO for RWStore allocator recycling in postHACommit() Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/rwstore/RWStore.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/rwstore/RWStore.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/rwstore/RWStore.java 2013-10-29 13:58:38 UTC (rev 7495) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/rwstore/RWStore.java 2013-10-29 14:00:53 UTC (rev 7496) @@ -6301,8 +6301,8 @@ } - // if (log.isInfoEnabled()) - log.warn("Released: " + totalFreed + " addresses from " + modCount + " modified Allocators"); + if (log.isInfoEnabled()) + log.info("Released: " + totalFreed + " addresses from " + modCount + " modified Allocators"); if (log.isTraceEnabled()) { log.trace("OLD BITS: " + BytesUtil.toHexString(oldmetabits)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |