From 5cf4cbd53c165b65d2157bbe27955a9d66b7dc33 Mon Sep 17 00:00:00 2001 From: Hitenjain14 Date: Thu, 17 Aug 2023 23:02:00 +0530 Subject: [PATCH] rmv log --- code/go/0chain.net/blobbercore/writemarker/protocol.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/go/0chain.net/blobbercore/writemarker/protocol.go b/code/go/0chain.net/blobbercore/writemarker/protocol.go index 258f5a5b0..cfe950b40 100644 --- a/code/go/0chain.net/blobbercore/writemarker/protocol.go +++ b/code/go/0chain.net/blobbercore/writemarker/protocol.go @@ -9,7 +9,6 @@ import ( "github.com/0chain/blobber/code/go/0chain.net/core/chain" "github.com/0chain/blobber/code/go/0chain.net/core/common" "github.com/0chain/blobber/code/go/0chain.net/core/encryption" - "github.com/0chain/blobber/code/go/0chain.net/core/logging" . "github.com/0chain/blobber/code/go/0chain.net/core/logging" "github.com/0chain/blobber/code/go/0chain.net/core/node" "github.com/0chain/blobber/code/go/0chain.net/core/transaction" @@ -82,7 +81,6 @@ func (wme *WriteMarkerEntity) VerifyMarker(ctx context.Context, dbAllocation *al if clientID == "" || clientID != wme.WM.ClientID || clientID != co.ClientID || co.ClientID != wme.WM.ClientID { return common.NewError("write_marker_validation_failed", "Write Marker is not by the same client who uploaded") } - logging.Logger.Info("WriteMarkerEntity.VerifyMarker", zap.Any("startTime", dbAllocation.StartTime)) if wme.WM.Timestamp < dbAllocation.StartTime { return common.NewError("write_marker_validation_failed", "Write Marker timestamp is before the allocation start time") }