Commit 1e1d40e97940d43b20d75ddf89cf608c7a0ef533

Authored by Adhidarma Hadiwinoto
1 parent 1d90e5063a
Exists in master

debug

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -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;