We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79ea557 commit 0abc316Copy full SHA for 0abc316
lldb/tools/lldb-dap/src-ts/logging.ts
@@ -1,3 +1,4 @@
1
+import * as os from 'os';
2
import * as path from "path";
3
import * as vscode from "vscode";
4
@@ -44,7 +45,7 @@ export class LogFilePathProvider {
44
45
const logFolder = this.logFolder || this.context.logUri.fsPath;
46
switch(type) {
47
case LogType.DEBUG_SESSION:
- return path.join(logFolder, `lldb-dap-session-${formatDate(new Date())}.log`);
48
+ return path.join(logFolder, `lldb-dap-session-${os.userInfo().username}-${formatDate(new Date())}.log`);
49
break;
50
}
51
0 commit comments