Skip to content

Commit 0bf0171

Browse files
Replaced console.log with console.debug (#11)
1 parent 2b9f9ea commit 0bf0171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/initializeCommunicationDir.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { userInfo } from "os";
88
export function initializeCommunicationDir() {
99
const communicationDirPath = getCommunicationDirPath();
1010

11-
console.log(`Creating communication dir ${communicationDirPath}`);
11+
console.debug(`Creating communication dir ${communicationDirPath}`);
1212
mkdirSync(communicationDirPath, { recursive: true, mode: 0o770 });
1313

1414
const stats = lstatSync(communicationDirPath);

0 commit comments

Comments
 (0)