Hi, On 25.01.2013 09:10, Uli Schlachter wrote:
local orig_error = error
function error(...)
print(debug.traceback())
require("naughty").notify(text = debug.traceback())
Whoops, this line should be:
require("naughty").notify({text = debug.traceback()})
orig_error(...)
end
-- To unsubscribe, send mail to [email protected].
