aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java')
-rw-r--r--server/src/main/java/com/vaadin/ui/UI.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/server/src/main/java/com/vaadin/ui/UI.java b/server/src/main/java/com/vaadin/ui/UI.java
index e48390666e..5891addca4 100644
--- a/server/src/main/java/com/vaadin/ui/UI.java
+++ b/server/src/main/java/com/vaadin/ui/UI.java
@@ -1588,10 +1588,11 @@ public abstract class UI extends AbstractSingleComponentContainer
* accessSynchronously. Furthermore, there wasn't an
* ErrorHandlingRunnable that handled the exception.
*/
- getLogger().log(Level.WARNING,
- "access() task ignored because UI got detached after the task was enqueued."
- + " To suppress this message, change the task to implement {} and make it handle {}."
- + " Affected task: {}",
+ getLogger().log(Level.WARNING, "access() task ignored "
+ + "because UI got detached after the task was "
+ + "enqueued. To suppress this message, change "
+ + "the task to implement {0} and make it handle "
+ + "{1}. Affected task: {2}",
new Object[] {
ErrorHandlingRunnable.class.getName(),
UIDetachedException.class.getName(),