diff options
author | kylo252 <[email protected]> | 2021-11-15 09:20:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-15 09:20:45 +0100 |
commit | ffcaae6c32fb10c7716dde2593e30bdf044719db (patch) | |
tree | ea3e7dde27561c059eb156b5deecc13199f6c874 /lua/lvim/core | |
parent | a9bf545e0fc76882d99a3539f317155ce6c76d35 (diff) |
fix: use an indepdent shadafile from neovim (#1910)
Diffstat (limited to 'lua/lvim/core')
-rw-r--r-- | lua/lvim/core/log.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/log.lua b/lua/lvim/core/log.lua index 9950af28..f51b8af6 100644 --- a/lua/lvim/core/log.lua +++ b/lua/lvim/core/log.lua @@ -1,6 +1,6 @@ local Log = {} -local logfile = string.format("%s/%s.log", vim.fn.stdpath "cache", "lvim") +local logfile = string.format("%s/%s.log", get_cache_dir(), "lvim") Log.levels = { TRACE = 1, |