diff options
| author | Daniel RodrÃguez Rivero <[email protected]> | 2022-05-30 08:29:12 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-30 08:29:12 +0200 | 
| commit | ed50b7d33fe4a00494343dcb3db861f483d147f4 (patch) | |
| tree | e2a57d78f99fc61a78fa9d995eb31abe2de3e6a3 /lua/lvim/core | |
| parent | 7220f1f2041c35580cff799037f1421a211ccf79 (diff) | |
fix(log): add date to the timestamp of logs (#2669)
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 bc05d72b..49c70f83 100644 --- a/lua/lvim/core/log.lua +++ b/lua/lvim/core/log.lua @@ -52,7 +52,7 @@ function Log:init()            processors = {              structlog.processors.Namer(),              structlog.processors.StackWriter({ "line", "file" }, { max_parents = 3, stack_level = 2 }), -            structlog.processors.Timestamper "%H:%M:%S", +            structlog.processors.Timestamper "%F %H:%M:%S",            },            formatter = structlog.formatters.Format( --              "%s [%-5s] %s: %-30s", | 
