@@ -180,7 +180,7 @@ class ElizaLogger implements IElizaLogger {
180
180
}
181
181
}
182
182
183
- // @ts -ignore - custom implementation
183
+ // @ts -expect-error - custom implementation
184
184
log ( ...strings ) {
185
185
this . #logWithStyle( strings , {
186
186
fg : "white" ,
@@ -190,7 +190,7 @@ class ElizaLogger implements IElizaLogger {
190
190
} ) ;
191
191
}
192
192
193
- // @ts -ignore - custom implementation
193
+ // @ts -expect-error - custom implementation
194
194
warn ( ...strings ) {
195
195
this . #logWithStyle( strings , {
196
196
fg : "yellow" ,
@@ -200,7 +200,7 @@ class ElizaLogger implements IElizaLogger {
200
200
} ) ;
201
201
}
202
202
203
- // @ts -ignore - custom implementation
203
+ // @ts -expect-error - custom implementation
204
204
error ( ...strings ) {
205
205
this . #logWithStyle( strings , {
206
206
fg : "red" ,
@@ -210,7 +210,7 @@ class ElizaLogger implements IElizaLogger {
210
210
} ) ;
211
211
}
212
212
213
- // @ts -ignore - custom implementation
213
+ // @ts -expect-error - custom implementation
214
214
info ( ...strings ) {
215
215
this . #logWithStyle( strings , {
216
216
fg : "blue" ,
@@ -220,7 +220,7 @@ class ElizaLogger implements IElizaLogger {
220
220
} ) ;
221
221
}
222
222
223
- // @ts -ignore - custom implementation
223
+ // @ts -expect-error - custom implementation
224
224
debug ( ...strings ) {
225
225
if ( ! this . verbose ) return ;
226
226
this . #logWithStyle( strings , {
0 commit comments