forked from TrueCloudLab/frostfs-node
[#1770] logger: Refactor Logger
component
Make it store its internal `zap.Logger`'s level. Also, make all the components to accept internal `logger.Logger` instead of `zap.Logger`; it will simplify future refactor. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
4baf00aa21
commit
f037022a7a
83 changed files with 207 additions and 156 deletions
|
@ -60,8 +60,8 @@ func initReputationService(c *cfg) {
|
|||
Storage: consumerStorage,
|
||||
}
|
||||
|
||||
localTrustLogger := c.log.With(zap.String("trust_type", "local"))
|
||||
intermediateTrustLogger := c.log.With(zap.String("trust_type", "intermediate"))
|
||||
localTrustLogger := &logger.Logger{Logger: c.log.With(zap.String("trust_type", "local"))}
|
||||
intermediateTrustLogger := &logger.Logger{Logger: c.log.With(zap.String("trust_type", "intermediate"))}
|
||||
|
||||
localTrustStorage := &localreputation.TrustStorage{
|
||||
Log: localTrustLogger,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue