aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/api/objects/data
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-04 23:03:46 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-04 23:03:46 +0000
commit0e8070f3eb5149c7223049f93b4df86adb63ea57 (patch)
treeb09614abbc567e338dd6ee5f423d3da5436ae961 /src/Java/gtPlusPlus/api/objects/data
parenta3ad39894856101326b5e6a9273d33a1ccaeb921 (diff)
downloadGT5-Unofficial-0e8070f3eb5149c7223049f93b4df86adb63ea57.tar.gz
GT5-Unofficial-0e8070f3eb5149c7223049f93b4df86adb63ea57.tar.bz2
GT5-Unofficial-0e8070f3eb5149c7223049f93b4df86adb63ea57.zip
- Removing some logging.
$ Fixed Bed Height > 128 not working as intended. $ Fixed IC2 ASM for wrench harvesting. $ Fixed TC4 ASM. $ Fixed Invalid Giant Chicken Texture handling.
Diffstat (limited to 'src/Java/gtPlusPlus/api/objects/data')
-rw-r--r--src/Java/gtPlusPlus/api/objects/data/TypeCounter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/api/objects/data/TypeCounter.java b/src/Java/gtPlusPlus/api/objects/data/TypeCounter.java
index 3d562bf76e..601a51392f 100644
--- a/src/Java/gtPlusPlus/api/objects/data/TypeCounter.java
+++ b/src/Java/gtPlusPlus/api/objects/data/TypeCounter.java
@@ -17,7 +17,7 @@ public class TypeCounter<V> implements Set<V> {
private final Class mClass;
public TypeCounter(Class o) {
- Logger.INFO("Created new TypeCounter for "+o.getName());
+ Logger.WARNING("Created new TypeCounter for "+o.getName());
mClass = o;
}
@@ -56,17 +56,17 @@ public class TypeCounter<V> implements Set<V> {
InternalTypeCounterObject<V> aValue = mInternalMap.get(aKey);
if (aValue == null) {
aValue = new InternalTypeCounterObject<V>((V) arg0);
- Logger.INFO("Adding new key to map: "+aKey);
+ Logger.WARNING("Adding new key to map: "+aKey);
}
aValue.add();
int a = aValue.count();
if (a > mHighestValue) {
mHighestValue = a;
mHighestValueKey = aKey;
- Logger.INFO("New Highest Count - "+aKey+":"+a);
+ Logger.WARNING("New Highest Count - "+aKey+":"+a);
}
mInternalMap.put(aKey, aValue);
- Logger.INFO(aKey+":"+a);
+ Logger.WARNING(aKey+":"+a);
return true;
}