From 0fbbf4e858c01555be783b5db86acbe4571bf5be Mon Sep 17 00:00:00 2001 From: Leon Connor Holm Date: Mon, 6 May 2024 12:11:22 +0200 Subject: [PATCH] Hope this works now lol --- tests/specs/log_spec.lua | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/specs/log_spec.lua b/tests/specs/log_spec.lua index cf37dad..acf4fe0 100644 --- a/tests/specs/log_spec.lua +++ b/tests/specs/log_spec.lua @@ -18,12 +18,18 @@ a.describe("log", function() end) a.it("Structlog should be able to write to LSP pipeline.", function() - log:info("Test lsp", "lsp") + log.lsp.info("Test lsp") end) a.it("Structlog should be able to write to qvim pipeline.", function() - log:info("Test Qvim") + log.qvim.info("Test Qvim") end) a.it("Structlog should be able to write to userconf pipeline.", function() - log:info("Test userconf", "userconf") + log.userconf.info("Test userconf") + end) + a.it("Structlog should be able to write to dap pipeline.", function() + log.dap.info("Test dap") + end) + a.it("Structlog should be able to write to none_ls pipeline.", function() + log.none_ls.info("Test none_ls") end) end)