@@ -105,7 +105,7 @@ export class BuyService {
105
105
106
106
return result ;
107
107
} catch ( error ) {
108
- logger . error ( "Error handling buy signal:" , error ) ;
108
+ console . log ( "Error handling buy signal:" , error ) ;
109
109
return {
110
110
success : false ,
111
111
error : error instanceof Error ? error . message : String ( error ) ,
@@ -154,7 +154,7 @@ export class BuyService {
154
154
155
155
return { isValid : true } ;
156
156
} catch ( error ) {
157
- logger . error ( "Error validating token:" , error ) ;
157
+ console . log ( "Error validating token:" , error ) ;
158
158
return {
159
159
isValid : false ,
160
160
reason : `Validation error: ${ error instanceof Error ? error . message : String ( error ) } ` ,
@@ -200,7 +200,7 @@ export class BuyService {
200
200
const minTradeSize = 0.05 ; // Minimum 0.05 SOL
201
201
return Math . max ( minTradeSize , finalAmount ) ;
202
202
} catch ( error ) {
203
- logger . error ( "Error calculating optimal buy amount:" , error ) ;
203
+ console . log ( "Error calculating optimal buy amount:" , error ) ;
204
204
return 0 ;
205
205
}
206
206
}
@@ -236,7 +236,7 @@ export class BuyService {
236
236
// Convert to basis points
237
237
return Math . floor ( finalSlippage * 100 ) ;
238
238
} catch ( error ) {
239
- logger . error ( "Error calculating dynamic slippage:" , error ) ;
239
+ console . log ( "Error calculating dynamic slippage:" , error ) ;
240
240
return 100 ; // Default to 1% slippage
241
241
}
242
242
}
@@ -272,7 +272,7 @@ export class BuyService {
272
272
if ( priceChange < - 5 ) return "bearish" ;
273
273
return "neutral" ;
274
274
} catch ( error ) {
275
- logger . error ( "Error assessing market condition:" , error ) ;
275
+ console . log ( "Error assessing market condition:" , error ) ;
276
276
return "neutral" ;
277
277
}
278
278
}
@@ -299,11 +299,11 @@ export class BuyService {
299
299
const recommendation = await this . dataService . getTokenRecommendation ( ) ;
300
300
301
301
if ( ! recommendation ) {
302
- logger . info ( "No token recommendation available" ) ;
302
+ console . log ( "No token recommendation available" ) ;
303
303
return ;
304
304
}
305
305
306
- logger . info ( "Token recommendation:" , recommendation ) ;
306
+ console . log ( "Token recommendation:" , recommendation ) ;
307
307
308
308
// Create buy signal
309
309
const signal : BuySignalMessage = {
@@ -316,7 +316,7 @@ export class BuyService {
316
316
// Create buy task with the recommended amount
317
317
await this . createBuyTask ( signal , recommendation . buy_amount ) ;
318
318
} catch ( error ) {
319
- logger . error ( "Error generating buy signal:" , error ) ;
319
+ console . log ( "Error generating buy signal:" , error ) ;
320
320
}
321
321
}
322
322
@@ -346,7 +346,7 @@ export class BuyService {
346
346
logger . info ( "Final suggested amount:" , { suggestedAmount } ) ;
347
347
return Math . min ( suggestedAmount , walletBalance ) ;
348
348
} catch ( error ) {
349
- logger . error ( "Trade analysis failed:" , {
349
+ console . log ( "Trade analysis failed:" , {
350
350
error : error instanceof Error ? error . message : "Unknown error" ,
351
351
stack : error instanceof Error ? error . stack : undefined ,
352
352
} ) ;
@@ -410,7 +410,7 @@ export class BuyService {
410
410
411
411
logger . info ( "Buy task created" ) ;
412
412
} catch ( error ) {
413
- logger . error ( "Error creating buy task:" , error ) ;
413
+ console . log ( "Error creating buy task:" , error ) ;
414
414
}
415
415
}
416
416
}
0 commit comments