# HG changeset patch # User Kim Alvefur # Date 1700601497 -3600 # Node ID 5e258164d2149e4b37421c8ab22ab63fd5006348 # Parent f91761822420c7a7f6af27abb31b597041515b40 util.async: Clip long line [luacheck] diff -r f91761822420 -r 5e258164d214 util/async.lua --- a/util/async.lua Tue Nov 21 22:06:28 2023 +0100 +++ b/util/async.lua Tue Nov 21 22:18:17 2023 +0100 @@ -233,7 +233,8 @@ end if err or state ~= self.notified_state then - self:log("debug", "changed state from %s to %s [%s %s]", self.notified_state, err and ("error ("..state..")") or state, self.thread, self.thread and coroutine.status(self.thread)); + self:log("debug", "changed state from %s to %s [%s %s]", self.notified_state, err and ("error (" .. state .. ")") or state, self.thread, + self.thread and coroutine.status(self.thread)); if err then state = "error" else