Skip to content

Commit

Permalink
output logs for lock manager
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Sep 13, 2024
1 parent da9c85a commit ff49f94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.18.1'
version = '1.18.2'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void lockAction(LockReference lockReference) {
}

void log(String key, String msg){
logger.log(Level.ALL, String.format("%s: %s", key, msg));
System.out.println(String.format("%s: %s", key, msg));
}

public ConcurrentMap<String, LockReference> getActiveLocks() {
Expand Down

0 comments on commit ff49f94

Please sign in to comment.