Skip to content

Commit 080a1fa

Browse files
committed
1 parent 205b617 commit 080a1fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/log/node/loggerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class LoggerService extends Disposable implements ILoggerService {
3232
if (resource.scheme === Schemas.file) {
3333
const baseName = basename(resource);
3434
const ext = extname(resource);
35-
logger = new SpdLogService(baseName.substring(0, baseName.length - ext.length), dirname(resource).path, this.logService.getLevel());
35+
logger = new SpdLogService(baseName.substring(0, baseName.length - ext.length), dirname(resource).fsPath, this.logService.getLevel());
3636
} else {
3737
logger = this.instantiationService.createInstance(FileLogService, basename(resource), resource, this.logService.getLevel());
3838
}

0 commit comments

Comments
 (0)