Compare View
Commits (2)
Changes
Showing 2 changed files Side-by-side Diff
config-from-main.js
... | ... | @@ -14,6 +14,7 @@ let config; |
14 | 14 | |
15 | 15 | for (let candindate in candindates) { |
16 | 16 | if (fs.existsSync(candindate)) { |
17 | + console.log(candindate + ' FOUND'); | |
17 | 18 | try { |
18 | 19 | config = require(candindate); |
19 | 20 | config.this_config_filename = candindate; |
... | ... | @@ -22,6 +23,7 @@ for (let candindate in candindates) { |
22 | 23 | |
23 | 24 | break; |
24 | 25 | } |
26 | + console.log(candindate + ' NOT FOUND'); | |
25 | 27 | } |
26 | 28 | |
27 | 29 | module.exports = config; |