SolaWing / xcode-build-server

a build server protocol implementation for integrate xcode with sourcekit-lsp
MIT License
283 stars 16 forks source link

There is a error when I run :LspLog, I want to know if this should be a harmless error #30

Closed 0xnofoot closed 4 months ago

0xnofoot commented 4 months ago

[ERROR][2023-12-18 13:23:56] .../vim/lsp/rpc.lua:734 "rpc" "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/sourcekit-lsp" "stderr" "INFO:root:Xcode Build Server Startup. Waiting Request...\n"

it just tell me waiting request, is it harmless?

SolaWing commented 4 months ago

I don't know why your client print a ERROR. the INFO:root:Xcode Build Server Startup. Waiting Request...\n is just a tip that xcode-build-server already startup. it is harmless and the request log in debug level so default you are not see it. If you have any trouble, you can export XBSDEBUG=1 or export SOURCEKIT_LOGGING=3 to view more detail logs.

0xnofoot commented 4 months ago

Thank you for your answer.