Skip to content

Commit ef2f255

Browse files
committed
Make the server logs more stable by stubbing time and seq info in the log
1 parent 7f63767 commit ef2f255

File tree

842 files changed

+78752
-78747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

842 files changed

+78752
-78747
lines changed

src/testRunner/unittests/tsserver/helpers.ts

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export function createHasErrorMessageLogger(): Logger {
7474
function handleLoggerGroup(logger: Logger, host: TestServerHost | undefined): Logger {
7575
let inGroup = false;
7676
let firstInGroup = false;
77-
let seq = 0;
7877
logger.startGroup = () => {
7978
inGroup = true;
8079
firstInGroup = true;
@@ -88,10 +87,9 @@ function handleLoggerGroup(logger: Logger, host: TestServerHost | undefined): Lo
8887

8988
function msg(s: string, type = ts.server.Msg.Err, write: (s: string) => void) {
9089
s = `[${nowString(logger.host!)}] ${s}`;
91-
if (!inGroup || firstInGroup) s = padStringRight(type + " " + seq.toString(), " ") + s;
90+
if (!inGroup || firstInGroup) s = padStringRight(type + " seq", " ") + s;
9291
if (ts.Debug.isDebugging) console.log(s);
9392
write(s);
94-
if (!inGroup) seq++;
9593
}
9694

9795
function padStringRight(str: string, padding: string) {
@@ -101,8 +99,8 @@ function handleLoggerGroup(logger: Logger, host: TestServerHost | undefined): Lo
10199

102100
function nowString(host: TestServerHost) {
103101
// E.g. "12:34:56.789"
104-
const d = host.now();
105-
return `${ts.padLeft(d.getUTCHours().toString(), 2, "0")}:${ts.padLeft(d.getUTCMinutes().toString(), 2, "0")}:${ts.padLeft(d.getUTCSeconds().toString(), 2, "0")}.${ts.padLeft(d.getUTCMilliseconds().toString(), 3, "0")}`;
102+
host.now(); // To increment the time but not print it to avoid the baseline updates
103+
return `hh:mm:ss:mss`;
106104
}
107105

108106
export function createLoggerWritingToConsole(host: TestServerHost): Logger {
@@ -401,15 +399,22 @@ function patchHostTimeouts(
401399

402400
const originalRunQueuedTimeoutCallbacks = host.runQueuedTimeoutCallbacks;
403401
const originalRunQueuedImmediateCallbacks = host.runQueuedImmediateCallbacks;
402+
const originalSetTime = host.setTime;
404403
let hostDiff: ReturnType<TestServerHost["snap"]> | undefined;
405404

406405
host.runQueuedTimeoutCallbacks = runQueuedTimeoutCallbacks;
407406
host.runQueuedImmediateCallbacks = runQueuedImmediateCallbacks;
408407
host.logTimeoutQueueLength = logTimeoutQueueLength;
408+
host.setTime = setTime;
409409
host.baselineHost = baselineHost;
410410
host.patched = true;
411411
return host;
412412

413+
function setTime(time: number) {
414+
logger.log(`Host is moving to new time`);
415+
return originalSetTime.call(host, time);
416+
}
417+
413418
function logTimeoutQueueLength() {
414419
logger.log(host.timeoutCallbacks.log());
415420
host.baselineHost(host.immediateCallbacks.log());

tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-applyChangedToOpenFiles-request.js

Lines changed: 89 additions & 89 deletions
Large diffs are not rendered by default.

tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-updateOpen-request.js

Lines changed: 89 additions & 89 deletions
Large diffs are not rendered by default.

tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js

Lines changed: 81 additions & 81 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
currentDirectory:: / useCaseSensitiveFileNames: false
2-
Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist
2+
Info seq [hh:mm:ss:mss] Provided types map file "/a/lib/typesMap.json" doesn't exist
33
Before request
44
//// [/node_modules/@angular/forms/forms.d.ts]
55
export declare class PatternValidator {}
@@ -17,7 +17,7 @@ export declare class PatternValidator {}
1717

1818

1919

20-
Info 1 [00:00:20.000] request:
20+
Info seq [hh:mm:ss:mss] request:
2121
{
2222
"command": "open",
2323
"arguments": {
@@ -26,11 +26,11 @@ Info 1 [00:00:20.000] request:
2626
"seq": 1,
2727
"type": "request"
2828
}
29-
Info 2 [00:00:21.000] Search path: /
30-
Info 3 [00:00:22.000] For info: /index.ts :: Config file name: /tsconfig.json
31-
Info 4 [00:00:23.000] Creating configuration project /tsconfig.json
32-
Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file
33-
Info 6 [00:00:25.000] Config: /tsconfig.json : {
29+
Info seq [hh:mm:ss:mss] Search path: /
30+
Info seq [hh:mm:ss:mss] For info: /index.ts :: Config file name: /tsconfig.json
31+
Info seq [hh:mm:ss:mss] Creating configuration project /tsconfig.json
32+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file
33+
Info seq [hh:mm:ss:mss] Config: /tsconfig.json : {
3434
"rootNames": [
3535
"/index.ts"
3636
],
@@ -39,47 +39,47 @@ Info 6 [00:00:25.000] Config: /tsconfig.json : {
3939
"configFilePath": "/tsconfig.json"
4040
}
4141
}
42-
Info 7 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
43-
Info 8 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
44-
Info 9 [00:00:28.000] Starting updateGraphWorker: Project: /tsconfig.json
45-
Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file
46-
Info 11 [00:00:30.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
47-
Info 12 [00:00:31.000] Project '/tsconfig.json' (Configured)
48-
Info 13 [00:00:32.000] Files (1)
42+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
43+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
44+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /tsconfig.json
45+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file
46+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
47+
Info seq [hh:mm:ss:mss] Project '/tsconfig.json' (Configured)
48+
Info seq [hh:mm:ss:mss] Files (1)
4949
/index.ts SVC-1-0 ""
5050

5151

5252
index.ts
5353
Matched by default include pattern '**/*'
5454

55-
Info 14 [00:00:33.000] -----------------------------------------------
56-
Info 15 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file
57-
Info 16 [00:00:35.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms
58-
Info 17 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
59-
Info 18 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
60-
Info 19 [00:00:38.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
61-
Info 20 [00:00:39.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
62-
Info 21 [00:00:40.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
63-
Info 22 [00:00:41.000] Files (1)
55+
Info seq [hh:mm:ss:mss] -----------------------------------------------
56+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file
57+
Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms
58+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
59+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
60+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
61+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
62+
Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
63+
Info seq [hh:mm:ss:mss] Files (1)
6464
/node_modules/@angular/forms/forms.d.ts Text-1 "export declare class PatternValidator {}"
6565

6666

6767
node_modules/@angular/forms/forms.d.ts
6868
Root file specified for compilation
6969

70-
Info 23 [00:00:42.000] -----------------------------------------------
71-
Info 24 [00:00:43.000] Project '/tsconfig.json' (Configured)
72-
Info 24 [00:00:44.000] Files (1)
70+
Info seq [hh:mm:ss:mss] -----------------------------------------------
71+
Info seq [hh:mm:ss:mss] Project '/tsconfig.json' (Configured)
72+
Info seq [hh:mm:ss:mss] Files (1)
7373

74-
Info 24 [00:00:45.000] -----------------------------------------------
75-
Info 24 [00:00:46.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
76-
Info 24 [00:00:47.000] Files (1)
74+
Info seq [hh:mm:ss:mss] -----------------------------------------------
75+
Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
76+
Info seq [hh:mm:ss:mss] Files (1)
7777

78-
Info 24 [00:00:48.000] -----------------------------------------------
79-
Info 24 [00:00:49.000] Open files:
80-
Info 24 [00:00:50.000] FileName: /index.ts ProjectRootPath: undefined
81-
Info 24 [00:00:51.000] Projects: /tsconfig.json
82-
Info 24 [00:00:52.000] response:
78+
Info seq [hh:mm:ss:mss] -----------------------------------------------
79+
Info seq [hh:mm:ss:mss] Open files:
80+
Info seq [hh:mm:ss:mss] FileName: /index.ts ProjectRootPath: undefined
81+
Info seq [hh:mm:ss:mss] Projects: /tsconfig.json
82+
Info seq [hh:mm:ss:mss] response:
8383
{
8484
"responseRequired": false
8585
}
@@ -101,7 +101,7 @@ FsWatchesRecursive::
101101
/node_modules: *new*
102102
{}
103103

104-
Info 25 [00:00:53.000] DirectoryWatcher:: Close:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
105-
Info 26 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
106-
Info 27 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file
107-
Info 28 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file
104+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
105+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: 1 undefined Config: /tsconfig.json WatchType: Wild card directory
106+
Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file
107+
Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file

tests/baselines/reference/tsserver/autoImportProvider/Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
currentDirectory:: / useCaseSensitiveFileNames: false
2-
Info 0 [00:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist
2+
Info seq [hh:mm:ss:mss] Provided types map file "/a/lib/typesMap.json" doesn't exist
33
Before request
44
//// [/packages/a/package.json]
55
{ "dependencies": { "b": "*" } }
@@ -20,7 +20,7 @@ Before request
2020
export class B {}
2121

2222

23-
Info 1 [00:00:24.000] request:
23+
Info seq [hh:mm:ss:mss] request:
2424
{
2525
"command": "open",
2626
"arguments": {
@@ -29,11 +29,11 @@ Info 1 [00:00:24.000] request:
2929
"seq": 1,
3030
"type": "request"
3131
}
32-
Info 2 [00:00:25.000] Search path: /packages/a
33-
Info 3 [00:00:26.000] For info: /packages/a/index.ts :: Config file name: /packages/a/tsconfig.json
34-
Info 4 [00:00:27.000] Creating configuration project /packages/a/tsconfig.json
35-
Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /packages/a/tsconfig.json 2000 undefined Project: /packages/a/tsconfig.json WatchType: Config file
36-
Info 6 [00:00:29.000] Config: /packages/a/tsconfig.json : {
32+
Info seq [hh:mm:ss:mss] Search path: /packages/a
33+
Info seq [hh:mm:ss:mss] For info: /packages/a/index.ts :: Config file name: /packages/a/tsconfig.json
34+
Info seq [hh:mm:ss:mss] Creating configuration project /packages/a/tsconfig.json
35+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /packages/a/tsconfig.json 2000 undefined Project: /packages/a/tsconfig.json WatchType: Config file
36+
Info seq [hh:mm:ss:mss] Config: /packages/a/tsconfig.json : {
3737
"rootNames": [
3838
"/packages/a/index.ts"
3939
],
@@ -48,10 +48,10 @@ Info 6 [00:00:29.000] Config: /packages/a/tsconfig.json : {
4848
}
4949
]
5050
}
51-
Info 7 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /packages/a 1 undefined Config: /packages/a/tsconfig.json WatchType: Wild card directory
52-
Info 8 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a 1 undefined Config: /packages/a/tsconfig.json WatchType: Wild card directory
53-
Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /packages/a/tsconfig.json
54-
Info 10 [00:00:33.000] Config: /packages/a/node_modules/b/tsconfig.json : {
51+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /packages/a 1 undefined Config: /packages/a/tsconfig.json WatchType: Wild card directory
52+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a 1 undefined Config: /packages/a/tsconfig.json WatchType: Wild card directory
53+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /packages/a/tsconfig.json
54+
Info seq [hh:mm:ss:mss] Config: /packages/a/node_modules/b/tsconfig.json : {
5555
"rootNames": [
5656
"/packages/a/node_modules/b/index.ts"
5757
],
@@ -61,51 +61,51 @@ Info 10 [00:00:33.000] Config: /packages/a/node_modules/b/tsconfig.json : {
6161
"configFilePath": "/packages/a/node_modules/b/tsconfig.json"
6262
}
6363
}
64-
Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /packages/a/node_modules/b/tsconfig.json 2000 undefined Project: /packages/a/tsconfig.json WatchType: Config file
65-
Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/b 1 undefined Config: /packages/a/node_modules/b/tsconfig.json WatchType: Wild card directory
66-
Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/b 1 undefined Config: /packages/a/node_modules/b/tsconfig.json WatchType: Wild card directory
67-
Info 14 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /packages/a/tsconfig.json WatchType: Missing file
68-
Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/@types 1 undefined Project: /packages/a/tsconfig.json WatchType: Type roots
69-
Info 16 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/@types 1 undefined Project: /packages/a/tsconfig.json WatchType: Type roots
70-
Info 17 [00:00:40.000] Finishing updateGraphWorker: Project: /packages/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
71-
Info 18 [00:00:41.000] Project '/packages/a/tsconfig.json' (Configured)
72-
Info 19 [00:00:42.000] Files (1)
64+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /packages/a/node_modules/b/tsconfig.json 2000 undefined Project: /packages/a/tsconfig.json WatchType: Config file
65+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/b 1 undefined Config: /packages/a/node_modules/b/tsconfig.json WatchType: Wild card directory
66+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/b 1 undefined Config: /packages/a/node_modules/b/tsconfig.json WatchType: Wild card directory
67+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /packages/a/tsconfig.json WatchType: Missing file
68+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/@types 1 undefined Project: /packages/a/tsconfig.json WatchType: Type roots
69+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules/@types 1 undefined Project: /packages/a/tsconfig.json WatchType: Type roots
70+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /packages/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
71+
Info seq [hh:mm:ss:mss] Project '/packages/a/tsconfig.json' (Configured)
72+
Info seq [hh:mm:ss:mss] Files (1)
7373
/packages/a/index.ts SVC-1-0 ""
7474

7575

7676
index.ts
7777
Matched by default include pattern '**/*'
7878

79-
Info 20 [00:00:43.000] -----------------------------------------------
80-
Info 21 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /packages/a/package.json 250 undefined WatchType: package.json file
81-
Info 22 [00:00:45.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms
82-
Info 23 [00:00:46.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
83-
Info 24 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
84-
Info 25 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
85-
Info 26 [00:00:49.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
86-
Info 27 [00:00:50.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
87-
Info 28 [00:00:51.000] Files (1)
79+
Info seq [hh:mm:ss:mss] -----------------------------------------------
80+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /packages/a/package.json 250 undefined WatchType: package.json file
81+
Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms
82+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
83+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
84+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /packages/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
85+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
86+
Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
87+
Info seq [hh:mm:ss:mss] Files (1)
8888
/packages/a/node_modules/b/index.ts Text-1 "export class B {}"
8989

9090

9191
node_modules/b/index.ts
9292
Root file specified for compilation
9393

94-
Info 29 [00:00:52.000] -----------------------------------------------
95-
Info 30 [00:00:53.000] Search path: /packages/a
96-
Info 31 [00:00:54.000] For info: /packages/a/tsconfig.json :: No config files found.
97-
Info 32 [00:00:55.000] Project '/packages/a/tsconfig.json' (Configured)
98-
Info 32 [00:00:56.000] Files (1)
94+
Info seq [hh:mm:ss:mss] -----------------------------------------------
95+
Info seq [hh:mm:ss:mss] Search path: /packages/a
96+
Info seq [hh:mm:ss:mss] For info: /packages/a/tsconfig.json :: No config files found.
97+
Info seq [hh:mm:ss:mss] Project '/packages/a/tsconfig.json' (Configured)
98+
Info seq [hh:mm:ss:mss] Files (1)
9999

100-
Info 32 [00:00:57.000] -----------------------------------------------
101-
Info 32 [00:00:58.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
102-
Info 32 [00:00:59.000] Files (1)
100+
Info seq [hh:mm:ss:mss] -----------------------------------------------
101+
Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
102+
Info seq [hh:mm:ss:mss] Files (1)
103103

104-
Info 32 [00:01:00.000] -----------------------------------------------
105-
Info 32 [00:01:01.000] Open files:
106-
Info 32 [00:01:02.000] FileName: /packages/a/index.ts ProjectRootPath: undefined
107-
Info 32 [00:01:03.000] Projects: /packages/a/tsconfig.json
108-
Info 32 [00:01:04.000] response:
104+
Info seq [hh:mm:ss:mss] -----------------------------------------------
105+
Info seq [hh:mm:ss:mss] Open files:
106+
Info seq [hh:mm:ss:mss] FileName: /packages/a/index.ts ProjectRootPath: undefined
107+
Info seq [hh:mm:ss:mss] Projects: /packages/a/tsconfig.json
108+
Info seq [hh:mm:ss:mss] response:
109109
{
110110
"responseRequired": false
111111
}

0 commit comments

Comments
 (0)