Suppress stack trace in warning (#7348)

This commit is contained in:
Jihoon Son 2019-03-26 17:27:29 -07:00 committed by Surekha
parent b9354fbddb
commit 4d37edac1e
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ public abstract class SQLMetadataStorageActionHandler<EntryType, StatusType, Log
task = objectMapper.readValue(resultSet.getBytes("payload"), entryType);
}
catch (IOException e) {
log.error(e, "Encountered exception while deserializing task payload, setting task to null");
log.warn("Encountered exception[%s] while deserializing task payload, setting payload to null", e.getMessage());
task = null;
}
try {