Changed error message for DataServiceException
This commit is contained in:
Родитель
f787444b89
Коммит
44f6a698c4
|
@ -274,7 +274,7 @@ public class KustoSinkTask extends SinkTask {
|
||||||
throw new ConnectException("Unable to connect to ADX(Kusto) instance", e);
|
throw new ConnectException("Unable to connect to ADX(Kusto) instance", e);
|
||||||
} catch (DataServiceException e) {
|
} catch (DataServiceException e) {
|
||||||
// Logging the error so that the trace is not lost.
|
// 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));
|
databaseTableErrorList.add(String.format("Database:%s Table:%s", database, table));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче