diff options
author | Artur Signell <artur@vaadin.com> | 2013-10-07 18:53:53 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-10-08 09:00:06 +0000 |
commit | 281fc4334881080a89c487b2d867d4643b667809 (patch) | |
tree | 086e94a70acb31d2ffbca22a2958947030005f28 /client | |
parent | 4f3cc4cef8c75a6f3a6af26e95509247a84c08b8 (diff) | |
download | vaadin-framework-281fc4334881080a89c487b2d867d4643b667809.tar.gz vaadin-framework-281fc4334881080a89c487b2d867d4643b667809.zip |
Fixed incorrect logging (#12241)
Change-Id: Icfe32a26f9069b7c5ed8160dba93b806754acf58
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/communication/AtmospherePushConnection.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java index 8bddd78688..4bf12ca1f3 100644 --- a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java +++ b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java @@ -229,12 +229,14 @@ public class AtmospherePushConnection implements PushConnection { } protected void onReopen(AtmosphereResponse response) { - VConsole.log("Push connection re-established using " + transport); + VConsole.log("Push connection re-established using " + + response.getTransport()); onConnect(response); } protected void onOpen(AtmosphereResponse response) { - VConsole.log("Push connection established using " + transport); + VConsole.log("Push connection established using " + + response.getTransport()); onConnect(response); } |