From 1cbf416b10def006e9727e1e624c25d49121f629 Mon Sep 17 00:00:00 2001 From: neilpang Date: Wed, 2 Nov 2016 23:22:36 +0800 Subject: [PATCH] minor, add more log --- acme.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/acme.sh b/acme.sh index 2a11ba2b..28d80b1e 100755 --- a/acme.sh +++ b/acme.sh @@ -1145,14 +1145,15 @@ _send_signed_request() { return 1 fi - _debug3 _headers "$_headers" + _debug2 _headers "$_headers" _CACHED_NONCE="$( echo "$_headers" | grep "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)" + _debug2 _CACHED_NONCE "$_CACHED_NONCE" else _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE" fi nonce="$_CACHED_NONCE" - _debug3 nonce "$nonce" + _debug2 nonce "$nonce" protected="$JWK_HEADERPLACE_PART1$nonce$JWK_HEADERPLACE_PART2" _debug3 protected "$protected"