Compare View
Commits (2)
Changes
Showing 2 changed files Side-by-side Diff
gateway/pull.js
... | ... | @@ -88,6 +88,7 @@ function reportUsingHttpPost(data) { |
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | + logger.verbose('Report to CORE using HTTP POST'); | |
91 | 92 | request.post(options, function(error, response, body) { |
92 | 93 | if (error) { |
93 | 94 | logger.warn('Error reporting to CORE', {error: error}); |
... | ... | @@ -114,7 +115,7 @@ function reportUsingHttpGet(data) { |
114 | 115 | } |
115 | 116 | } |
116 | 117 | |
117 | - | |
118 | + logger.verbose('Report to CORE using HTTP GET'); | |
118 | 119 | request(options, function(error, response, body) { |
119 | 120 | if (error) { |
120 | 121 | logger.warn('Error reporting to CORE', {error: error}); |