summaryrefslogtreecommitdiff
path: root/sw-ui
diff options
context:
space:
mode:
Diffstat (limited to 'sw-ui')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
index 02ff6e10..4e196afb 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
@@ -23,8 +23,9 @@ suspend fun SwSagaContext.rootSaga() = try {
coroutineScope {
val action = next<RequestChooseName>()
val serverUrl = sevenWondersWebSocketUrl()
+ console.info("Connecting to Seven Wonders web socket API...")
val session = SevenWondersClient().connect(serverUrl)
- console.info("Connected to Seven Wonders web socket API")
+ console.info("Connected!")
launch(start = CoroutineStart.UNDISPATCHED) {
serverErrorSaga(session)
bgstack15