diff options
author | luaneko <luaneko@chiya.dev> | 2022-12-20 21:40:25 +1100 |
---|---|---|
committer | luaneko <luaneko@chiya.dev> | 2022-12-20 21:40:25 +1100 |
commit | 8d4a0df7d6b61e275932e42858b74f7c8a34c05a (patch) | |
tree | 2296e6a72407aafe52f1961f99168bbf68a5a896 /lua/dep.lua | |
parent | d2b3ec29affa099b681ea21cbecb6718b4ac3134 (diff) | |
download | dep-8d4a0df7d6b61e275932e42858b74f7c8a34c05a.tar.gz dep-8d4a0df7d6b61e275932e42858b74f7c8a34c05a.tar.bz2 dep-8d4a0df7d6b61e275932e42858b74f7c8a34c05a.zip |
Refactor logger class
Diffstat (limited to '')
-rwxr-xr-x | lua/dep.lua | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lua/dep.lua b/lua/dep.lua index 2ae3105..1c6d9a1 100755 --- a/lua/dep.lua +++ b/lua/dep.lua @@ -1,7 +1,14 @@ -local logger = require("dep/log") -local proc = require("dep/proc") - -logger:open() +-- +-- Copyright (c) 2022 chiya.dev +-- +-- Use of this source code is governed by the MIT License +-- which can be found in the LICENSE file and at: +-- +-- https://opensource.org/licenses/MIT +-- + +local logger = require("dep.log").global +local proc = require("dep.proc") local initialized, perf, config_path, base_dir local packages, root |