Pavlin Radoslavov
Committed by Gerrit Code Review

Fix the logic for printing a log message

"Intent ... removed installable still found", and change the level
from INFO to WARNING.

[Discussed with Yuta]

Change-Id: I0b40559de10983c3330f1174e3ab1cbe06f07b32
......@@ -508,8 +508,8 @@ public class HazelcastIntentStore
if (prevIntentState == null) {
log.warn("Intent {} state was already removed", intentId);
}
if (prevInstallable == null) {
log.info("Intent {} installable was already removed", intentId);
if (prevInstallable != null) {
log.warn("Intent {} removed installable still found", intentId);
}
} catch (InterruptedException e) {
log.error("Batch write was interrupted while processing {}", op, e);
......