aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/api
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-28 16:21:27 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-28 16:21:27 +1000
commit3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a (patch)
treec91837426b9d200669b2d42b29a6eda5c1784dac /src/Java/gtPlusPlus/xmod/gregtech/api
parent4da55268da03a810028dac0da43604f05feed2c4 (diff)
downloadGT5-Unofficial-3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a.tar.gz
GT5-Unofficial-3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a.tar.bz2
GT5-Unofficial-3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a.zip
- Removed Recipe generation logging.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
index b1ee632c88..1fe2426ced 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
@@ -155,16 +155,16 @@ GT_MetaTileEntity_MultiBlockBase {
(100 - percentage));
cloneRecipe.mDuration = tempTime;
if (cloneRecipe.mDuration < originalTime) {
- Utils.LOG_INFO("Generated recipe with a smaller time. | "
+ Utils.LOG_MACHINE_INFO("Generated recipe with a smaller time. | "
+ originalTime + " | " + cloneRecipe.mDuration + " |");
return cloneRecipe;
} else {
- Utils.LOG_INFO("Did not generate recipe with a smaller time. | "
+ Utils.LOG_MACHINE_INFO("Did not generate recipe with a smaller time. | "
+ originalTime + " | " + cloneRecipe.mDuration + " |");
return tRecipe;
}
}
- Utils.LOG_INFO("Error generating recipe, returning null.");
+ Utils.LOG_MACHINE_INFO("Error generating recipe, returning null.");
return null;
}