Skip to content

Commit 9ac0e41

Browse files
committed
Cleaner usable path logging
1 parent 7c7e824 commit 9ac0e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transport/IPC.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class IPCTransport extends Transport {
118118

119119
this.client.emit(
120120
"debug",
121-
`CLIENT | Found ${useablePath.length} Discord client path;\n${useablePath.join("\n")}`
121+
`CLIENT | Found ${useablePath.length} Discord client path;\n${useablePath.map(x => Array.isArray(x) ? `${x[1]}:${x[0]}` : x).join("\n")}`
122122
);
123123

124124
if (useablePath.length < 0)

0 commit comments

Comments
 (0)