aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-19 20:28:26 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-19 20:28:26 +1000
commit29ad0e3a1ef9b4d3507837172000317ce033a974 (patch)
treef922cbe95c55585485420d2f243848acae759e69 /src/Java/gtPlusPlus/core
parent71891d5996e35612a3e6edbe2169084e37772f0b (diff)
downloadGT5-Unofficial-29ad0e3a1ef9b4d3507837172000317ce033a974.tar.gz
GT5-Unofficial-29ad0e3a1ef9b4d3507837172000317ce033a974.tar.bz2
GT5-Unofficial-29ad0e3a1ef9b4d3507837172000317ce033a974.zip
- Removed some logging.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/tileentities/machines/TileEntityProjectTable.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/core/tileentities/machines/TileEntityProjectTable.java b/src/Java/gtPlusPlus/core/tileentities/machines/TileEntityProjectTable.java
index 31277a763e..d7619cc1f9 100644
--- a/src/Java/gtPlusPlus/core/tileentities/machines/TileEntityProjectTable.java
+++ b/src/Java/gtPlusPlus/core/tileentities/machines/TileEntityProjectTable.java
@@ -127,7 +127,7 @@ public class TileEntityProjectTable extends TileEntity implements INetworkDataPr
//Data stick
ItemStack dataStick = this.inventoryOutputs.getStackInSlot(0);
if (dataStick != null && this.container != null){
- Utils.LOG_INFO("Found Data Stick and valid container.");
+ Utils.LOG_WARNING("Found Data Stick and valid container.");
ItemStack outputComponent = container.getOutputContent();
@@ -138,17 +138,17 @@ public class TileEntityProjectTable extends TileEntity implements INetworkDataPr
newStick = NBTUtils.writeItemsToNBT(newStick, craftInputComponent);
NBTUtils.setBookTitle(newStick, "Encrypted Project Data");
int slotm=0;
- Utils.LOG_INFO("Uploading to Data Stick.");
+ Utils.LOG_WARNING("Uploading to Data Stick.");
for (ItemStack is : NBTUtils.readItemsFromNBT(newStick)){
if (is != null){
- Utils.LOG_INFO("Uploaded "+is.getDisplayName()+" into memory slot "+slotm+".");
+ Utils.LOG_WARNING("Uploaded "+is.getDisplayName()+" into memory slot "+slotm+".");
}
else {
- Utils.LOG_INFO("Left memory slot "+slotm+" blank.");
+ Utils.LOG_WARNING("Left memory slot "+slotm+" blank.");
}
slotm++;
}
- Utils.LOG_INFO("Encrypting Data Stick.");
+ Utils.LOG_WARNING("Encrypting Data Stick.");
this.inventoryOutputs.setInventorySlotContents(1, newStick);
this.inventoryOutputs.setInventorySlotContents(0, null);
}