Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 2 changed files Side-by-side Diff

... ... @@ -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});
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.6.4",
  3 + "version": "1.6.5",
4 4 "description": "SDK for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {