mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-22 14:25:12 +00:00
* refactoring #1012: Format specifiers should be used instead of string concatenation. * refactoring #1012: Format specifiers should be used instead of string concatenation. * refactoring #1012: Remove isInfoEnabled check
This commit is contained in:
@@ -55,6 +55,6 @@ public class MaintenanceLock {
|
||||
|
||||
public void setLock(boolean lock) {
|
||||
this.lock = lock;
|
||||
LOGGER.info("Maintenance lock is set to: ", lock);
|
||||
LOGGER.info("Maintenance lock is set to: {}", lock);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user