@@ -54,8 +54,10 @@ import {
54
54
import { isClassic } from 'uniswap/src/features/transactions/swap/utils/routing'
55
55
import { getClassicQuoteFromResponse } from 'uniswap/src/features/transactions/swap/utils/tradingApi'
56
56
import { createSaga } from 'uniswap/src/utils/saga'
57
+ import { errorToString } from 'utilities/src/errors'
57
58
import { percentFromFloat } from 'utilities/src/format/percent'
58
59
import { logger } from 'utilities/src/logger/logger'
60
+ import { LoggerErrorContext } from 'utilities/src/logger/types'
59
61
import { didUserReject } from 'utils/swapErrorToUserReadableMessage'
60
62
61
63
interface HandleSwapStepParams extends Omit < HandleOnChainStepParams , 'step' | 'info' > {
@@ -206,9 +208,7 @@ function* classicSwap(
206
208
}
207
209
} catch ( error ) {
208
210
const displayableError = getDisplayableError ( error , step )
209
- if ( displayableError ) {
210
- logger . error ( displayableError , { tags : { file : 'swapSaga' , function : 'classicSwap' } } )
211
- }
211
+ logSwapError ( displayableError , { tags : { file : 'swapSaga' , function : 'classicSwap' } } )
212
212
onFailure ( displayableError )
213
213
return
214
214
}
@@ -256,9 +256,7 @@ function* uniswapXSwap(
256
256
}
257
257
} catch ( error ) {
258
258
const displayableError = getDisplayableError ( error , step )
259
- if ( displayableError ) {
260
- logger . error ( displayableError , { tags : { file : 'swapSaga' , function : 'uniswapXSwap' } } )
261
- }
259
+ logSwapError ( displayableError , { tags : { file : 'swapSaga' , function : 'uniswapXSwap' } } )
262
260
onFailure ( displayableError )
263
261
return
264
262
}
@@ -267,6 +265,21 @@ function* uniswapXSwap(
267
265
yield * call ( onSuccess )
268
266
}
269
267
268
+ function logSwapError ( error : TransactionError | undefined , captureContext : LoggerErrorContext ) {
269
+ if ( error instanceof TransactionStepFailedError ) {
270
+ logger . error (
271
+ {
272
+ ...error ,
273
+ step : JSON . stringify ( error . step ) ,
274
+ originalError : errorToString ( error . originalError ) ,
275
+ } ,
276
+ captureContext ,
277
+ )
278
+ } else if ( error ) {
279
+ logger . error ( error , captureContext )
280
+ }
281
+ }
282
+
270
283
function getDisplayableError ( error : Error , step : TransactionStep ) : TransactionError | undefined {
271
284
// If the user rejects a request, or it's a known interruption e.g. trade update, we handle gracefully / do not show error UI
272
285
if ( didUserReject ( error ) || error instanceof HandledTransactionInterrupt ) {
0 commit comments