summaryrefslogtreecommitdiff
path: root/lsp-write.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-06 18:00:14 -0500
committerpommicket <pommicket@gmail.com>2023-01-06 18:00:45 -0500
commit082daa54c41c44ad1e878485237faea8f9a60678 (patch)
tree5ffdeb9245c7210fd8a2e35357e9b548f32f7c06 /lsp-write.c
parent2d32df18e83b059834ae65904e6439c72372454b (diff)
finished lsp-log
Diffstat (limited to 'lsp-write.c')
-rw-r--r--lsp-write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp-write.c b/lsp-write.c
index df31d47..0883929 100644
--- a/lsp-write.c
+++ b/lsp-write.c
@@ -328,7 +328,7 @@ static void message_writer_write_and_free(LSP *lsp, JSONWriter *o) {
printf("%s%s%s\n",term_bold(stdout),content,term_clear(stdout));
#endif
if (lsp->log) {
- fprintf(lsp->log, "MESSAGE FROM CLIENT TO SERVER\n%s\n\n", content + header_size);
+ fprintf(lsp->log, "LSP MESSAGE FROM CLIENT TO SERVER\n%s\n\n", content + header_size);
}
process_write(lsp->process, content, strlen(content));