After a crash, I see a line like this in the SB Radio's logs:
It looks like sending the crash log causes it to be deleted from the device.
I would prefer not to send the log, but to retain it on the device so I can review it. Is there a setting for this that I can configure from the UI?
I can see that in CrashLogApplet.lua, the sending vs retention of the logs is conditioned on a system setting:
However I can't see how to change that setting in the UI. Sorry if I'm missing it!
I'm using Squeezebox Radio firmware version 8.0.1-r16907.
Code:
Jan 23 06:58:44 squeezeplay: INFO applet.CrashLog - CrashLogApplet.lua:43 sending crash log: /root/crashlog.bFso6a sendLog=true
I would prefer not to send the log, but to retain it on the device so I can review it. Is there a setting for this that I can configure from the UI?
I can see that in CrashLogApplet.lua, the sending vs retention of the logs is conditioned on a system setting:
Code:
function _processLogs(self) local settings = self:getSettings() for file,queued in pairs(logs) do if settings.sendLog == true then if queued then _crashLogSend(self, file) end else _crashLogDontSend(self, file) end end end
I'm using Squeezebox Radio firmware version 8.0.1-r16907.
Comment