Details
Details
- Reviewers
sammccall
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Server-side tracing looks nice, but you'll need some flags to allow actually extracting a trace, right?
clang-tools-extra/clangd/index/remote/server/Server.cpp | ||
---|---|---|
62 ↗ | (On Diff #278081) | Nit: this is "LookupRequest" on the client side. I'd suggest just the same on the server, or "Recv.LookupRequest" or so? to make it easier to correspond them |
63 ↗ | (On Diff #278081) | you don't do this on the client side, but could |
63 ↗ | (On Diff #278081) | prefer DebugString over ShortDebugString, the missing newlines can make it hard to follow |
98 ↗ | (On Diff #278081) | you don't do this on the client side, but should |
clang-tools-extra/clangd/index/remote/server/Server.cpp | ||
---|---|---|
63 ↗ | (On Diff #278081) | Do you mean logging RPCRequest there? Done now. |