Skip to content

Commit

Permalink
INTERNAL: Move logger code
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesecrust authored and jhpark816 committed Oct 7, 2024
1 parent a613d67 commit ca4fd76
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/net/spy/memcached/CacheManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,14 @@ public CacheManager(String hostPort, String serviceCode,
/* ENABLE_MIGRATION end */

this.startup = false;

getLogger().info("CacheManager started. (" + serviceCode + "@" + hostPort + ")");

}

@Override
public synchronized void start() {
setName("Cache Manager IO for " + serviceCode + "@" + zkConnectString);
setDaemon(true);
super.start();
getLogger().info("CacheManager started. (" + serviceCode + "@" + zkConnectString + ")");
}

private String getCacheListZPath() {
Expand Down

0 comments on commit ca4fd76

Please sign in to comment.