summaryrefslogtreecommitdiff
path: root/toolkit/democui/log.go
blob: 527d057d2c34e6b498ccb687fedfd08bea655039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main

import 	(
	"os"
	witlog "git.wit.org/wit/gui/log"
)

func log(a ...any) {
	witlog.Log(a...)
}

func sleep(a ...any) {
	witlog.Sleep(a...)
}

func exit(a ...any) {
	witlog.Exit(a...)
}

func setOutput(f *os.File) {
	witlog.SetOutput(f)
}