Skip to content

Commit 2e81955

Browse files
authored
Merge pull request #337 from getlantern/nelson/wasm-log-version-on-startup
Wasm log version on startup
2 parents 04f5afa + e1c483b commit 2e81955

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

clientcore/ui_wasm_impl.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"strings"
99
"syscall/js"
1010

11+
"github.com/getlantern/broflake/common"
1112
"github.com/google/uuid"
1213
)
1314

@@ -71,7 +72,7 @@ func (ui UIImpl) OnReady() {
7172
}
7273

7374
func (ui UIImpl) OnStartup() {
74-
// Do nothing
75+
common.Debugf("Unbounded %v", common.Version)
7576
}
7677

7778
// 'downstreamChunk' fires once for each chunk of data received

common/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package common
22

33
// Must be a valid semver
4-
const Version = "v2.1.7"
4+
const Version = "v2.1.8"

ui/public/widget.wasm

280 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)