Skip to content

Commit 66c6524

Browse files
committed
upload: remove debug prints
1 parent 9d0fe43 commit 66c6524

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

upload.go

-2
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,10 @@ func (cli *Client) UploadReader(ctx context.Context, plaintext io.Reader, tempFi
107107
err = fmt.Errorf("failed to create temporary file: %w", err)
108108
return
109109
}
110-
fmt.Println("OPENED TEMPFILE", tempFile.(*os.File).Name())
111110
defer func() {
112111
tempFileFile := tempFile.(*os.File)
113112
_ = tempFileFile.Close()
114113
_ = os.Remove(tempFileFile.Name())
115-
fmt.Println("REMOVED TEMPFILE", tempFile.(*os.File).Name())
116114
}()
117115
}
118116
resp.FileSHA256, resp.FileEncSHA256, resp.FileLength, err = cbcutil.EncryptStream(cipherKey, iv, macKey, plaintext, tempFile)

0 commit comments

Comments
 (0)