Hello all,
There is a typo on "SimpleSubmitExample" class on line 74. It won't print error log because the error object is in the error title not as an object :
LOGGER.error("Receive negative response, e");
It should be :
LOGGER.error("Receive negative response", e);
Excuse my grammar
Good luck
Hello all, There is a typo on "SimpleSubmitExample" class on line 74. It won't print error log because the error object is in the error title not as an object :
LOGGER.error("Receive negative response, e");
It should be :LOGGER.error("Receive negative response", e);
Excuse my grammar Good luck