Skip to content

Commit c755d64

Browse files
committed
add debug log
1 parent d3e7cc8 commit c755d64

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

internal/encryptor/encryptor.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"bytes"
55
"context"
66
"encoding/json"
7+
"fmt"
78
"io"
89
"net/http"
910
"time"
@@ -110,6 +111,8 @@ func (e Encryptor) Decrypt(input string, headers map[string]string) (string, err
110111
return "", err
111112
}
112113

114+
fmt.Println(string(bytes))
115+
113116
decryptionSecret := DecryptionResponse{}
114117
err = json.Unmarshal(bytes, &decryptionSecret)
115118
if err != nil {

0 commit comments

Comments
 (0)