We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0939c8 commit 62c9349Copy full SHA for 62c9349
rta/src/main/java/com/gluonhq/richtextarea/undo/CommandManager.java
@@ -56,7 +56,7 @@ public void execute(AbstractCommand<T> cmd) {
56
undoStack.push(cmd);
57
redoStack.clear();
58
end();
59
- LOGGER.log(Level.FINE, "Execute: " + this);
+ LOGGER.log(Level.FINE, () -> "Execute: " + this);
60
}
61
62
public void undo() {
@@ -65,7 +65,7 @@ public void undo() {
65
cmd.undo(context);
66
redoStack.push(cmd);
67
68
- LOGGER.log(Level.FINE, "Undo: " + this);
+ LOGGER.log(Level.FINE, () -> "Undo: " + this);
69
70
71
0 commit comments