Skip to content

Commit 830b24f

Browse files
peter-lawreyJerryShea
authored andcommitted
Retrying acquiring a lock after failure to obtain lock file should be an info message, Fixes #130
1 parent 73cc564 commit 830b24f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

affinity/src/main/java/net/openhft/affinity/LockInventory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static boolean updateLockForCurrentThread(final boolean bind, final Affi
8989
throw e;
9090

9191
} catch (IOException e) {
92-
LOGGER.warn("Error occurred acquiring lock", e);
92+
LOGGER.info("Error occurred acquiring lock, trying another " + e);
9393
}
9494
return false;
9595
}

0 commit comments

Comments
 (0)