@@ -78,9 +78,9 @@ class Console protected () extends js.Object {
78
78
/**
79
79
* The `console.debug()` function is an alias for `console.log()`.
80
80
*/
81
- def debug (data : Any , args : Any * ): Unit = js.native
82
- def debug (data : Any ): Unit = js.native
83
- def debug (): Unit = js.native
81
+ def debug (data : Any , arg1 : Any , args : Any * ): Unit = js.native
82
+ def debug (data : Any ): Unit = js.native
83
+ def debug (): Unit = js.native
84
84
85
85
/**
86
86
* Uses [[io.scalajs.nodejs.util.Util.inspect() ]] on `obj` and prints the resulting string to `stdout`.
@@ -103,12 +103,10 @@ class Console protected () extends js.Object {
103
103
* If formatting elements (e.g. `%d`) are not found in the first string then[[io.scalajs.nodejs.util.Util.inspect() ]]
104
104
* is called on each argument and the resulting string values are concatenated. See [[io.scalajs.nodejs.util.Util.format() ]]
105
105
* for more information.
106
- *
107
- * @param args
108
106
*/
109
- def error (data : Any , args : Any * ): Unit = js.native
110
- def error (data : Any ): Unit = js.native
111
- def error (): Unit = js.native
107
+ def error (data : Any , arg1 : Any , args : Any * ): Unit = js.native
108
+ def error (data : Any ): Unit = js.native
109
+ def error (): Unit = js.native
112
110
113
111
/**
114
112
* Increases indentation of subsequent lines by two spaces.
@@ -133,18 +131,18 @@ class Console protected () extends js.Object {
133
131
/**
134
132
* The `console.info()` function is an alias for [[log() ]].
135
133
*/
136
- def info (data : Any , args : Any * ): Unit = js.native
137
- def info (data : Any ): Unit = js.native
138
- def info (): Unit = js.native
134
+ def info (data : Any , arg1 : Any , args : Any * ): Unit = js.native
135
+ def info (data : Any ): Unit = js.native
136
+ def info (): Unit = js.native
139
137
140
138
/**
141
139
* Prints to `stdout` with newline.
142
140
* Multiple arguments can be passed, with the first used as the primary message and all additional used as
143
141
* substitution values similar to `printf(3)` (the arguments are all passed to `util.format()`).
144
142
*/
145
- def log (data : Any , args : Any * ): Unit = js.native
146
- def log (data : Any ): Unit = js.native
147
- def log (): Unit = js.native
143
+ def log (data : Any , arg1 : Any , args : Any * ): Unit = js.native
144
+ def log (data : Any ): Unit = js.native
145
+ def log (): Unit = js.native
148
146
149
147
/**
150
148
* Try to construct a table with the columns of the properties of `tabularData` (or use `properties`) and
@@ -181,16 +179,16 @@ class Console protected () extends js.Object {
181
179
* Prints to `stderr` the string `'Trace: '`, followed by the [[io.scalajs.nodejs.util.Util.format() ]] formatted
182
180
* message and stack trace to the current position in the code.
183
181
*/
184
- def trace (data : Any , args : Any * ): Unit = js.native
185
- def trace (data : Any ): Unit = js.native
186
- def trace (): Unit = js.native
182
+ def trace (data : Any , arg1 : Any , args : Any * ): Unit = js.native
183
+ def trace (data : Any ): Unit = js.native
184
+ def trace (): Unit = js.native
187
185
188
186
/**
189
187
* The `console.warn()` function is an alias for [[error()]
190
188
*/
191
- def warn (data : Any , args : Any * ): Unit = js.native
192
- def warn (data : Any ): Unit = js.native
193
- def warn (): Unit = js.native
189
+ def warn (data : Any , arg1 : Any , args : Any * ): Unit = js.native
190
+ def warn (data : Any ): Unit = js.native
191
+ def warn (): Unit = js.native
194
192
195
193
/**
196
194
* This method does not display anything unless used in the inspector.
0 commit comments