-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathconsole.eve
More file actions
53 lines (39 loc) · 744 Bytes
/
console.eve
File metadata and controls
53 lines (39 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Console
## Console Log
Logs are written to stdout
search
[#console/log text]
watch console
("log", text)
end
## Console Warn
Warnings are also written to stdout, but are tagged differently
search
[#console/warn text]
watch console
("warn", text)
end
## Console Error
Errors are written to std-err
search
[#console/error text]
watch console
("error", text)
end
## For the TS side
The TS watcher interface currently relies on passing messages through the websocket watcher
search
[#console/log text]
watch client/websocket
("console/log", text)
end
search
[#console/warn text]
watch client/websocket
("console/warn", text)
end
search
[#console/error text]
watch client/websocket
("console/error", text)
end