更改日志模块为spdlog

This commit is contained in:
csh
2025-06-24 21:57:40 +08:00
parent d9beeb82a6
commit 56b0f5473a
18 changed files with 111 additions and 242 deletions
@@ -1,12 +1,12 @@
#include <spdlog/spdlog.h>
#include "./initialized_provider.hpp"
#include "../../lsp/logger.hpp"
namespace lsp::providers::initialized
{
nlohmann::json InitializedProvider::ProvideResponse(const LspRequest& request)
{
log::Debug("InitializedProvider: Providing response for method '", request.method, "' with id ", request.id);
spdlog::debug("InitializeProvider: Providing response for method {}", request.method);
return nlohmann::json();
}