Skip to content

Commit 0480636

Browse files
committed
Removing unnecessary notifications
1 parent eb5bdc4 commit 0480636

File tree

5 files changed

+7
-1351
lines changed

5 files changed

+7
-1351
lines changed

lua/eca/commands.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,8 @@ function M.setup()
293293
desc = "Emergency stop for infinite loops or runaway responses",
294294
})
295295

296+
297+
296298
vim.api.nvim_create_user_command("EcaFixTreesitter", function()
297299
local Utils = require("eca.utils")
298300

lua/eca/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,14 +253,14 @@ function M.setup(opts)
253253
M.server = Server:new({
254254
on_started = function(connection)
255255
M.status_bar:update("Running")
256-
Logger.info("ECA server started and ready!")
256+
Logger.debug("ECA server started and ready!")
257257
end,
258258
on_status_changed = function(status)
259259
M.status_bar:update(status)
260260
if status == "Failed" then
261261
Logger.notify("ECA server failed to start. Check :messages for details.", vim.log.levels.ERROR)
262262
elseif status == "Starting" then
263-
Logger.info("Starting ECA server...")
263+
Logger.debug("Starting ECA server...")
264264
end
265265
end,
266266
})

0 commit comments

Comments
 (0)