From f6eef4a1f0d2885f35a8b2ec0dd3ec43490dcd34 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Mon, 6 Jun 2022 11:19:55 +1000 Subject: [PATCH] feat(explorer): add filesystem watchers: reinstate git output logging --- lua/nvim-tree/git/runner.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/nvim-tree/git/runner.lua b/lua/nvim-tree/git/runner.lua index 3669e60c..af130b66 100644 --- a/lua/nvim-tree/git/runner.lua +++ b/lua/nvim-tree/git/runner.lua @@ -53,8 +53,7 @@ end function Runner:_log_raw_output(output) if output and type(output) == "string" then - -- TODO put this back after watcher feature completed - -- log.raw("git", "%s", output) + log.raw("git", "%s", output) log.line("git", "done") end end