Skip to content

Commit c7661d7

Browse files
lucidhzLarvan2
authored andcommitted
fix: initialize error message with cipher (#1760)
1 parent 56c1288 commit c7661d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adapter/outbound/shadowsocks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ func NewShadowSocks(option ShadowSocksOption) (*ShadowSocks, error) {
236236
Password: option.Password,
237237
})
238238
if err != nil {
239-
return nil, fmt.Errorf("ss %s initialize error: %w", addr, err)
239+
return nil, fmt.Errorf("ss %s cipher: %s initialize error: %w", addr, option.Cipher, err)
240240
}
241241

242242
var v2rayOption *v2rayObfs.Option

adapter/outbound/shadowsocksr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func NewShadowSocksR(option ShadowSocksROption) (*ShadowSocksR, error) {
141141
password := option.Password
142142
coreCiph, err := core.PickCipher(cipher, nil, password)
143143
if err != nil {
144-
return nil, fmt.Errorf("ssr %s initialize error: %w", addr, err)
144+
return nil, fmt.Errorf("ssr %s cipher: %s initialize error: %w", addr, cipher, err)
145145
}
146146
var (
147147
ivSize int

0 commit comments

Comments
 (0)