Be sure to use the logger from the appropriate package. However in this case,

let's not be checking in debug logging. Bang! Howdy calls these methods
hundreds of thousads of times a day and we don't really want the log spam.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@702 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-08-04 12:58:08 +00:00
parent 299d63fd14
commit 12bd9e9db7
@@ -23,7 +23,6 @@ package com.threerings.stats.data;
import java.util.Iterator;
import com.threerings.media.Log;
import com.threerings.presents.dobj.DSet;
/**
@@ -278,8 +277,6 @@ public final class StatSet extends DSet<Stat>
} else {
add(stat);
}
Log.log.info("StatSet.addStat()", "Stat", stat);
}
protected void updateStat (Stat stat)
@@ -287,8 +284,6 @@ public final class StatSet extends DSet<Stat>
if (_container != null) {
_container.updateStats(stat);
}
Log.log.info("StatSet.updateStat()", "Stat", stat);
}
/**