diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-11-28 16:21:27 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-11-28 16:21:27 +1000 |
commit | 3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a (patch) | |
tree | c91837426b9d200669b2d42b29a6eda5c1784dac /src/Java/gtPlusPlus/xmod/gregtech | |
parent | 4da55268da03a810028dac0da43604f05feed2c4 (diff) | |
download | GT5-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')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 6 |
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; } |