forked from TrueCloudLab/frostfs-node
[#184] morph: Make deposit logs INFO
We have already had and solved plenty of deposit issues and notary balance is a really important thing. Deserves to be INFO even before the huge logs severity refactor, happens on an app start only. Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
parent
97e201993b
commit
3646723ae3
1 changed files with 2 additions and 2 deletions
|
@ -202,7 +202,7 @@ func (c *Client) depositNotary(amount fixedn.Fixed8, till int64) (res util.Uint2
|
|||
|
||||
// Transaction is already in mempool waiting to be processed.
|
||||
// This is an expected situation if we restart the service.
|
||||
c.logger.Debug("notary deposit has already been made",
|
||||
c.logger.Info("notary deposit has already been made",
|
||||
zap.Int64("amount", int64(amount)),
|
||||
zap.Int64("expire_at", till),
|
||||
zap.Uint32("vub", vub),
|
||||
|
@ -210,7 +210,7 @@ func (c *Client) depositNotary(amount fixedn.Fixed8, till int64) (res util.Uint2
|
|||
return util.Uint256{}, nil
|
||||
}
|
||||
|
||||
c.logger.Debug("notary deposit invoke",
|
||||
c.logger.Info("notary deposit invoke",
|
||||
zap.Int64("amount", int64(amount)),
|
||||
zap.Int64("expire_at", till),
|
||||
zap.Uint32("vub", vub),
|
||||
|
|
Loading…
Reference in a new issue