Skip to content

Commit

Permalink
Updated logs
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-momin committed Feb 18, 2025
1 parent 0b1f620 commit 111ac59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/solana/chainwriter/chain_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ func CreateATAs(ctx context.Context, args any, lookups []ATALookup, derivedTable
Commitment: rpc.CommitmentFinalized,
})
if err == nil {
logger.Info("ATA already exists, skipping creation.", lookup.Location)
logger.Infow("ATA already exists, skipping creation.", "location", lookup.Location)
continue
}
if !strings.Contains(err.Error(), "not found") {
Expand Down Expand Up @@ -443,7 +443,7 @@ func (s *SolanaChainWriterService) GetFeeComponents(ctx context.Context) (*types
return nil, fmt.Errorf("gas estimator not available")
}

s.lggr.Debugw("Fetching fee components")
s.lggr.Debug("Fetching fee components")
fee := s.ge.BaseComputeUnitPrice()
return &types.ChainFeeComponents{
ExecutionFee: new(big.Int).SetUint64(fee),
Expand Down

0 comments on commit 111ac59

Please sign in to comment.