@@ -83,31 +83,31 @@ export class Logger {
83
83
84
84
/**
85
85
* Log INFO
86
- * @param ... msgs multiple arguments to be logged.
86
+ * @param msgs multiple arguments to be logged.
87
87
*/
88
88
info ( ...msgs : any [ ] ) : void {
89
89
this . log_ ( LogLevel . INFO , msgs ) ;
90
90
}
91
91
92
92
/**
93
93
* Log DEBUG
94
- * @param ... msgs multiple arguments to be logged.
94
+ * @param msgs multiple arguments to be logged.
95
95
*/
96
96
debug ( ...msgs : any [ ] ) : void {
97
97
this . log_ ( LogLevel . DEBUG , msgs ) ;
98
98
}
99
99
100
100
/**
101
101
* Log WARN
102
- * @param ... msgs multiple arguments to be logged.
102
+ * @param msgs multiple arguments to be logged.
103
103
*/
104
104
warn ( ...msgs : any [ ] ) : void {
105
105
this . log_ ( LogLevel . WARN , msgs ) ;
106
106
}
107
107
108
108
/**
109
109
* Log ERROR
110
- * @param ... msgs multiple arguments to be logged.
110
+ * @param msgs multiple arguments to be logged.
111
111
*/
112
112
error ( ...msgs : any [ ] ) : void {
113
113
this . log_ ( LogLevel . ERROR , msgs ) ;
@@ -221,6 +221,7 @@ export class Logger {
221
221
/**
222
222
* Get the identifier of the logger as '/<id>'
223
223
* @param logLevel The log level of the message.
224
+ * @param id not used yet
224
225
* @param writeTo The enum for where to write the logs.
225
226
* @return The string of the formatted id
226
227
*/
@@ -239,6 +240,7 @@ export class Logger {
239
240
/**
240
241
* Get the log level formatted with the first letter. For info, it is I.
241
242
* @param logLevel The log level of the message.
243
+ * @param id not used yet
242
244
* @param writeTo The enum for where to write the logs.
243
245
* @return The string of the formatted log level
244
246
*/
0 commit comments