diff options
Diffstat (limited to 'src/ide.js')
-rw-r--r-- | src/ide.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -44,7 +44,7 @@ function spawnIdeClient(body, options) { | |||
44 | 44 | ||
45 | const stdout = []; | 45 | const stdout = []; |
46 | 46 | ||
47 | debug('ide client %s %o %o', ideClientCommand, ideClientArgs, body); | 47 | debug('ide client %s %o %O', ideClientCommand, ideClientArgs, body); |
48 | 48 | ||
49 | return new Promise((resolve, reject) => { | 49 | return new Promise((resolve, reject) => { |
50 | const ideClient = spawn(ideClientCommand, ideClientArgs); | 50 | const ideClient = spawn(ideClientCommand, ideClientArgs); |
@@ -211,7 +211,7 @@ module.exports.rebuild = function rebuild(psModule) { | |||
211 | try { | 211 | try { |
212 | const parsed = JSON.parse(response); | 212 | const parsed = JSON.parse(response); |
213 | 213 | ||
214 | debugVerbose('parsed JSON response: %o', parsed); | 214 | debugVerbose('parsed JSON response: %O', parsed); |
215 | 215 | ||
216 | return Promise.resolve(parsed); | 216 | return Promise.resolve(parsed); |
217 | } | 217 | } |
@@ -224,7 +224,7 @@ module.exports.rebuild = function rebuild(psModule) { | |||
224 | const result = Array.isArray(parsed.result) ? parsed.result : []; | 224 | const result = Array.isArray(parsed.result) ? parsed.result : []; |
225 | 225 | ||
226 | return Promise.map(result, (item, i) => { | 226 | return Promise.map(result, (item, i) => { |
227 | debugVerbose('formatting result %o', item); | 227 | debugVerbose('formatting result %O', item); |
228 | 228 | ||
229 | return formatIdeResult(item, options, i, result.length); | 229 | return formatIdeResult(item, options, i, result.length); |
230 | }).then(formatted => ({ | 230 | }).then(formatted => ({ |
@@ -254,7 +254,7 @@ module.exports.rebuild = function rebuild(psModule) { | |||
254 | 254 | ||
255 | return isModuleNotFound || isUnknownModule || isUnknownModuleImport; | 255 | return isModuleNotFound || isUnknownModule || isUnknownModuleImport; |
256 | })) { | 256 | })) { |
257 | debug('failed to rebuild because the module is unknown') | 257 | debug('module %s was not rebuilt because the module is unknown', psModule.name); |
258 | 258 | ||
259 | return Promise.reject(new UnknownModuleError()); | 259 | return Promise.reject(new UnknownModuleError()); |
260 | } | 260 | } |