Skip to content

Commit 5e29577

Browse files
author
Bryan Clark
committed
Remote options from log
1 parent 1dac4fe commit 5e29577

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function generate(id: string, username: string, password: string) {
4545
async function write(directory: string, settings: string) {
4646
const options = {encoding: 'utf-8', flag: 'wx'}; // 'wx': Like 'w' but fails if path exists
4747
const location = path.join(directory, SETTINGS_FILE);
48-
console.log(`writing ${location} with options ${options}`);
48+
console.log(`writing ${location}`);
4949
try {
5050
return fs.writeFileSync(location, settings, options);
5151
} catch (e) {

0 commit comments

Comments
 (0)