Details
-
Task
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
Description
During Mesos tests, `MesosRemoteManagerCodec.encode/decode` functions produce too verbose messages as INFO level. This issue suppresses them to FINEST level.
MesosRemoteManagerCodec.java
public byte[] encode(final EvaluatorControl evaluatorControl) { try { - LOG.log(Level.INFO, "Before Eecoding: {0}", evaluatorControl.toString()); + LOG.log(Level.FINEST, "Before Encoding: {0}", evaluatorControl.toString()); ... - LOG.log(Level.INFO, "After Encoding"); + LOG.log(Level.FINEST, "After Encoding"); ...
MesosRemoteManagerCodec.java
public EvaluatorControl decode(final byte[] buf) { try { - LOG.log(Level.INFO, "Before Decoding: {0}", buf); + LOG.log(Level.FINEST, "Before Decoding: {0}", buf); ... - LOG.log(Level.INFO, "After Decoding"); + LOG.log(Level.FINEST, "After Decoding"); ...
Attachments
Issue Links
- links to