From b54e141a13fbf1225cce5dc7e133ad8fe7e4a526 Mon Sep 17 00:00:00 2001 From: Sergey Cherepanov Date: Fri, 5 May 2023 16:30:22 +0200 Subject: [PATCH] remove peer addr from log --- metric/log.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/metric/log.go b/metric/log.go index 9cb8edbd..7cc34e66 100644 --- a/metric/log.go +++ b/metric/log.go @@ -35,10 +35,6 @@ func Identity(val string) zap.Field { return zap.String("identity", val) } -func Addr(val string) zap.Field { - return zap.String("addr", val) -} - func FileId(fileId string) zap.Field { return zap.String("fileId", fileId) }