Skip to content

Commit c6c7338

Browse files
committed
rmv debug log
1 parent ce5417c commit c6c7338

File tree

1 file changed

+1
-3
lines changed
  • code/go/0chain.net/blobbercore/filestore

1 file changed

+1
-3
lines changed

code/go/0chain.net/blobbercore/filestore/storage.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ func (fs *FileStore) MoveToFilestore(allocID, hash string, version int) error {
156156
return common.NewError("blob_object_dir_creation_error", err.Error())
157157
}
158158

159-
logging.Logger.Info("move_to_filestore", zap.String("allocation_id", allocID), zap.String("path", fPath))
160-
161159
_ = os.Rename(preCommitPath, fPath)
162160
return nil
163161
}
@@ -527,7 +525,7 @@ func (fs *FileStore) GetFileBlock(readBlockIn *ReadBlockInput) (*FileDownloadRes
527525
return nil, common.NewError("get_file_path_error", err.Error())
528526
}
529527
}
530-
logging.Logger.Info("filestore_path", zap.String("path", fileObjectPath))
528+
531529
file, err := os.Open(fileObjectPath)
532530
if err != nil {
533531
if readBlockIn.IsPrecommit {

0 commit comments

Comments
 (0)