logging code

This commit is contained in:
Bryan Clark 2019-12-05 00:45:56 -05:00
parent 96236d7072
commit 2b05c00514
2 changed files with 2 additions and 0 deletions

1
dist/index.js generated vendored
View file

@ -4175,6 +4175,7 @@ function write(directory, settings) {
// default flag is 'w' // default flag is 'w'
return fs.writeFileSync(location, settings, { encoding: 'utf-8' }); return fs.writeFileSync(location, settings, { encoding: 'utf-8' });
} }
console.log(`code ${e.code} and O_EXCL ${fs.constants.O_EXCL}`);
throw e; throw e;
} }
}); });

View file

@ -55,6 +55,7 @@ async function write(directory: string, settings: string) {
// default flag is 'w' // default flag is 'w'
return fs.writeFileSync(location, settings, {encoding: 'utf-8'}); return fs.writeFileSync(location, settings, {encoding: 'utf-8'});
} }
console.log(`code ${e.code} and O_EXCL ${fs.constants.O_EXCL}`);
throw e; throw e;
} }
} }