зеркало из
1
0
Форкнуть 0

Changed error message for DataServiceException

This commit is contained in:
SanchayGupta1197 2020-06-18 14:47:13 +05:30
Родитель f787444b89
Коммит 44f6a698c4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -274,7 +274,7 @@ public class KustoSinkTask extends SinkTask {
throw new ConnectException("Unable to connect to ADX(Kusto) instance", e);
} catch (DataServiceException e) {
// Logging the error so that the trace is not lost.
log.error("DataServiceException Occurred ", e);
log.error("{}", e);
databaseTableErrorList.add(String.format("Database:%s Table:%s", database, table));
}
}