mirror of https://github.com/apache/druid.git
Log used flag (#4614)
This commit is contained in:
parent
8921538251
commit
cbb9f7d214
|
@ -631,10 +631,10 @@ public class IndexerSQLMetadataStorageCoordinator implements IndexerMetadataStor
|
|||
.bind("payload", jsonMapper.writeValueAsBytes(segment))
|
||||
.execute();
|
||||
|
||||
log.info("Published segment [%s] to DB", segment.getIdentifier());
|
||||
log.info("Published segment [%s] to DB with used flag [%s]", segment.getIdentifier(), used);
|
||||
}
|
||||
catch (Exception e) {
|
||||
log.error(e, "Exception inserting segment [%s] into DB", segment.getIdentifier());
|
||||
log.error(e, "Exception inserting segment [%s] with used flag [%s] into DB", segment.getIdentifier(), used);
|
||||
throw e;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue