This commit is contained in:
kepler155c
2018-10-27 23:16:16 -04:00
parent 57e7a574c4
commit dc6af1d0c3
4 changed files with 44 additions and 9 deletions

View File

@@ -36,7 +36,9 @@ function NetworkedAdapter:showStorage()
debug('Storage:')
for k,v in pairs(self.remoteDefaults) do
local online = v.adapter and v.adapter.online
debug(' %s: %s', online and ' online' or 'offline', k)
if not online then
debug(' %s: %s', online and ' online' or 'offline', k)
end
end
debug('')
end