Next.js Discord

Discord Forum

what does `1 level` mean in in the next output log?

Unanswered
Ocicat posted this in #help-forum
Open in Discord
OcicatOP
can anyone tell me what 1 level here means?
-  ┌ GET / 200 in 1434ms
   │
   ├──── GET http://127.0.0.1:8000/organizations/ 200 in 169ms (cache: MISS)
   │
   ├── 1 level ── GET http://127.0.0.1:8000/users/ 200 in 109ms (cache: MISS)
   │
   └── 1 level ── GET https://api.kanye.rest/ 200 in 125ms (cache: MISS)



im just making 3 (originally 2) fetch calls in a row in a server component. i added the kanye.rest to see if it would say something like 2 level(s) but it doesn't

why doesn't the first request (http://127.0.0.1:8000/organizations/) have the 1 level before it?

0 Replies