This is an automated email from the ASF dual-hosted git repository.
wyk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git
The following commit(s) were added to refs/heads/master by this push:
new 11d47c79cc [NO ISSUE] Log flush operation completion status
11d47c79cc is described below
commit 11d47c79cc860a8c474539d9b8558c3c81b77199
Author: Wail Alkowaileet <[email protected]>
AuthorDate: Thu Jun 20 17:44:34 2024 -0700
[NO ISSUE] Log flush operation completion status
Change-Id: Ia343c709c4965c1cc4d3502bbc5cb614c471f034
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18395
Integration-Tests: Jenkins <[email protected]>
Reviewed-by: Ian Maxon <[email protected]>
Tested-by: Jenkins <[email protected]>
---
.../java/org/apache/hyracks/storage/am/lsm/common/impls/LSMHarness.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hyracks-fullstack/hyracks/hyracks-storage-am-lsm-common/src/main/java/org/apache/hyracks/storage/am/lsm/common/impls/LSMHarness.java
b/hyracks-fullstack/hyracks/hyracks-storage-am-lsm-common/src/main/java/org/apache/hyracks/storage/am/lsm/common/impls/LSMHarness.java
index 263b1faee8..2d040204f1 100644
---
a/hyracks-fullstack/hyracks/hyracks-storage-am-lsm-common/src/main/java/org/apache/hyracks/storage/am/lsm/common/impls/LSMHarness.java
+++
b/hyracks-fullstack/hyracks/hyracks-storage-am-lsm-common/src/main/java/org/apache/hyracks/storage/am/lsm/common/impls/LSMHarness.java
@@ -539,7 +539,7 @@ public class LSMHarness implements ILSMHarness {
}
String flushedComponent =
operation.getStatus() == LSMIOOperationStatus.SUCCESS ?
newComponent.toString() : "FAILED";
- LOGGER.debug("Finished FLUSH operation {} to new disk component {}.",
operation, flushedComponent,
+ LOGGER.debug("Finished FLUSH operation {} to new disk component {}.
Status: {}", operation, flushedComponent,
operation.getStatus());
}