File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -112,9 +112,13 @@ function Task:_run(task)
112
112
task (self , self ._opts )
113
113
end
114
114
115
- --- @param msg string | string[]
115
+ --- @param msg string | string[] | LazyMsg
116
116
--- @param level ? number
117
117
function Task :log (msg , level )
118
+ if type (msg ) == " table" and msg .msg then
119
+ level = msg .level or level
120
+ msg = msg .msg
121
+ end
118
122
level = level or vim .log .levels .DEBUG
119
123
self ._level = math.max (self ._level or 0 , level or 0 )
120
124
msg = type (msg ) == " table" and table.concat (msg , " \n " ) or msg
@@ -170,8 +174,8 @@ function Task:_done()
170
174
if self ._opts .on_done then
171
175
self ._opts .on_done (self )
172
176
end
177
+ self :render ()
173
178
vim .schedule (function ()
174
- self :render ()
175
179
vim .api .nvim_exec_autocmds (" User" , {
176
180
pattern = " LazyPlugin" .. self .name :sub (1 , 1 ):upper () .. self .name :sub (2 ),
177
181
data = { plugin = self .plugin .name },
You can’t perform that action at this time.
0 commit comments