with warn level logging this becomes too verbose in production envs, reverting the warn level, info still available using debug level: https://issues.apache.org/activemq/browse/AMQ-2158

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@798931 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2009-07-29 14:58:32 +00:00
parent a27709b086
commit d5333d4e44
1 changed files with 0 additions and 4 deletions

View File

@ -242,10 +242,6 @@ public abstract class Usage<T extends Usage> implements Service {
LOG.debug("Memory usage change from: " + oldPercentUsage + "% of available memory, to: "
+ newPercentUsage + "% of available memory");
}
if (newPercentUsage >= 100) {
LOG.warn("Memory usage is now at " + newPercentUsage + "%");
}
if (started.get()) {
// Switching from being full to not being full..
if (oldPercentUsage >= 100 && newPercentUsage < 100) {