Skip to content

Commit

Permalink
set mint and burn as debug lines (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic authored Mar 22, 2024
1 parent 2a10cdb commit d8a7321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/bank/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ func (k BaseKeeper) MintCoins(ctx sdk.Context, moduleName string, amounts sdk.Co
}

logger := k.Logger(ctx)
logger.Info("minted coins from module account", "amount", amounts.String(), "from", moduleName)
logger.Debug("minted coins from module account", "amount", amounts.String(), "from", moduleName)

// emit mint event
ctx.EventManager().EmitEvent(
Expand Down Expand Up @@ -514,7 +514,7 @@ func (k BaseKeeper) BurnCoins(ctx sdk.Context, moduleName string, amounts sdk.Co
}

logger := k.Logger(ctx)
logger.Info("burned tokens from module account", "amount", amounts.String(), "from", moduleName)
logger.Debug("burned tokens from module account", "amount", amounts.String(), "from", moduleName)

// emit burn event
ctx.EventManager().EmitEvent(
Expand Down

0 comments on commit d8a7321

Please sign in to comment.