From 3e67d2ff5fbfeb7ad35a092316d85792cc09022c Mon Sep 17 00:00:00 2001 From: Denver Gingerich Date: Mon, 22 May 2017 15:22:49 +0000 Subject: [PATCH] fix 7729a26 so params remain out of log, as before As mentioned in 889024e, 7729a26 had the side-effect of adding the params values to the log. In the spirit of 349d8b0, we are trying to keep such values out of the log, so explicitly remove them to retain the old (and desired) behaviour. --- sgx-catapult.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgx-catapult.rb b/sgx-catapult.rb index f616fd929a46b3a246852abd57c59a4341bb8216..a42a414c429892dd4908764b871f0d0653a76e2d 100755 --- a/sgx-catapult.rb +++ b/sgx-catapult.rb @@ -827,7 +827,7 @@ class WebhookHandler < Goliath::API end def response(env) - puts 'ENV: ' + env.to_s + puts 'ENV: ' + env.reject{ |k| k == 'params' }.to_s users_num = '' others_num = ''