File tree 3 files changed +13
-7
lines changed
3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 75
75
"tiktoken" : " 1.0.17" ,
76
76
"tinyld" : " 1.3.4" ,
77
77
"together-ai" : " ^0.7.0" ,
78
+ "tslog" : " ^4.9.3" ,
78
79
"unique-names-generator" : " 4.7.1" ,
79
80
"uuid" : " 11.0.2" ,
80
81
"zod" : " ^3.23.8"
Original file line number Diff line number Diff line change @@ -180,7 +180,6 @@ class ElizaLogger implements IElizaLogger {
180
180
}
181
181
}
182
182
183
- // @ts -expect-error - custom implementation
184
183
log ( ...strings ) {
185
184
this . #logWithStyle( strings , {
186
185
fg : "white" ,
@@ -190,7 +189,6 @@ class ElizaLogger implements IElizaLogger {
190
189
} ) ;
191
190
}
192
191
193
- // @ts -expect-error - custom implementation
194
192
warn ( ...strings ) {
195
193
this . #logWithStyle( strings , {
196
194
fg : "yellow" ,
@@ -200,7 +198,6 @@ class ElizaLogger implements IElizaLogger {
200
198
} ) ;
201
199
}
202
200
203
- // @ts -expect-error - custom implementation
204
201
error ( ...strings ) {
205
202
this . #logWithStyle( strings , {
206
203
fg : "red" ,
@@ -210,7 +207,6 @@ class ElizaLogger implements IElizaLogger {
210
207
} ) ;
211
208
}
212
209
213
- // @ts -expect-error - custom implementation
214
210
info ( ...strings ) {
215
211
this . #logWithStyle( strings , {
216
212
fg : "blue" ,
@@ -220,7 +216,6 @@ class ElizaLogger implements IElizaLogger {
220
216
} ) ;
221
217
}
222
218
223
- // @ts -expect-error - custom implementation
224
219
debug ( ...strings ) {
225
220
if ( ! this . verbose ) return ;
226
221
this . #logWithStyle( strings , {
You can’t perform that action at this time.
0 commit comments