util.async: Clip long line [luacheck]
authorKim Alvefur <zash@zash.se>
Tue, 21 Nov 2023 22:18:17 +0100
changeset 13341 5e258164d214
parent 13340 f91761822420
child 13342 470ab6b55e93
util.async: Clip long line [luacheck]
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