Commit 79e81b0 1 parent 50c8548 commit 79e81b0 Copy full SHA for 79e81b0
File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ const noop = _ => {};
16
16
* Note that this runs in the start compartment,
17
17
* before lockdown.
18
18
*
19
- * TODO: consider other methods per SES VirtualConsole.
20
19
* See https://github.com/Agoric/agoric-sdk/issues/2146
21
20
*/
22
21
const console = {
@@ -26,9 +25,26 @@ const console = {
26
25
warn : tryPrint ,
27
26
error : tryPrint ,
28
27
28
+ trace : noop ,
29
+ dirxml : noop ,
29
30
group : noop ,
30
31
groupCollapsed : noop ,
31
32
groupEnd : noop ,
33
+
34
+ assert : noop ,
35
+ timeLog : noop ,
36
+
37
+ clear : noop ,
38
+ count : noop ,
39
+ countReset : noop ,
40
+ dir : noop ,
41
+
42
+ table : noop ,
43
+ time : noop ,
44
+ timeEnd : noop ,
45
+ profile : noop ,
46
+ profileEnd : noop ,
47
+ timeStamp : noop ,
32
48
} ;
33
49
34
50
globalThis . console = console ;
You can’t perform that action at this time.
0 commit comments