From 3494624390b1d9ddf6ee5ce65cc4a333f9d2d63a Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 28 Nov 2017 16:21:27 +1000 Subject: - Removed Recipe generation logging. --- .../implementations/base/GregtechMeta_MultiBlockBase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech') 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; } -- cgit