Merge pull request #7164 from DannysPVM/fix-cml-updating

Only log the IOException message on failure to submit CML update.
This commit is contained in:
Tomas Slusny
2019-01-12 11:14:08 +01:00
committed by GitHub

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