]> git.e2factory.org Git - e2factory.git/commitdiff
e2lib: fix debug log format
authorTobias Ulmer <tu@emlix.com>
Thu, 9 May 2019 17:14:48 +0000 (19:14 +0200)
committerTobias Ulmer <tu@emlix.com>
Thu, 9 May 2019 17:14:48 +0000 (19:14 +0200)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
generic/e2lib.lua

index 40914a2ae88ac719e5e859acc2b749d4e15fc409..1b038a2b14f04a9feac05b2d0f724f278a139ea3 100644 (file)
@@ -1978,7 +1978,7 @@ function e2lib.callcmd(argv, fdctv, workdir, envdict, nowait, pty)
     assert(nowait == nil or nowait == false
         or nowait == true or nowait == 'nopoll')
 
-    e2lib.logf(4, 'e2lib.callcmd argv=%q', table.concat(argv, '", "'))
+    e2lib.logf(4, 'e2lib.callcmd argv="%s"', table.concat(argv, '", "'))
 
     -- fork dance, enter critical section, block all signals
     le2lib.signal_block()