Only log the IOException message on failure to submit CML update.

This commit is contained in:
DannysPVM
2019-01-02 23:52:49 -06:00
parent ecd0f7dce3
commit fa108717cc

View File

@@ -128,7 +128,7 @@ public class CrystalMathLabs extends Plugin
@Override @Override
public void onFailure(Call call, IOException e) public void onFailure(Call call, IOException e)
{ {
log.warn("error submitting CML update", e); log.warn("Error submitting CML update, caused by {}.", e.getMessage());
} }
@Override @Override