less debug info

This commit is contained in:
neil 2015-12-26 22:54:38 +08:00
parent 6c0ab5d2a7
commit fd1e882eed
1 changed files with 9 additions and 9 deletions

18
le.sh
View File

@ -26,7 +26,7 @@ API=$DEFAULT_CA
DEBUG= DEBUG=
_debug() { _debug() {
if ! [ "DEBUG" ] ; then if ! [ "$DEBUG" ] ; then
return return
fi fi
@ -144,8 +144,8 @@ _send_signed_request() {
needbas64="$3" needbas64="$3"
_info url $url _debug url $url
_info payload "$payload" _debug payload "$payload"
CURL_HEADER="$WORKING_DIR/curl.header" CURL_HEADER="$WORKING_DIR/curl.header"
dp="$WORKING_DIR/curl.dump" dp="$WORKING_DIR/curl.dump"
@ -190,7 +190,7 @@ _send_signed_request() {
_get() { _get() {
url="$1" url="$1"
_info url $url _debug url $url
response=$(curl --silent $url) response=$(curl --silent $url)
ret=$? ret=$?
_debug response "$response" _debug response "$response"
@ -212,13 +212,13 @@ _setopt() {
fi fi
if grep -H -n "^$__opt$__sep" $__conf ; then if grep -H -n "^$__opt$__sep" $__conf ; then
echo OK _debug OK
sed -i "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" $__conf sed -i "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" $__conf
else else
echo APP _debug APP
echo "$__opt$__sep$__val$__end" >> $__conf echo "$__opt$__sep$__val$__end" >> $__conf
fi fi
grep -H -n "^$__opt$__sep" $__conf _debug "$(grep -H -n "^$__opt$__sep" $__conf)"
} }
_initpath() { _initpath() {
@ -342,10 +342,10 @@ issue() {
_debug http01 "$http01" _debug http01 "$http01"
token=$(echo "$http01" | sed 's/,/\n'/g| grep '"token":'| cut -d : -f 2|sed 's/"//g') token=$(echo "$http01" | sed 's/,/\n'/g| grep '"token":'| cut -d : -f 2|sed 's/"//g')
_info token $token _debug token $token
uri=$(echo "$http01" | sed 's/,/\n'/g| grep '"uri":'| cut -d : -f 2,3|sed 's/"//g') uri=$(echo "$http01" | sed 's/,/\n'/g| grep '"uri":'| cut -d : -f 2,3|sed 's/"//g')
_info uri $uri _debug uri $uri
keyauthorization="$token.$thumbprint" keyauthorization="$token.$thumbprint"
_debug keyauthorization "$keyauthorization" _debug keyauthorization "$keyauthorization"