0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-06-26 03:21:22 +02:00

Small correction in log text

This commit is contained in:
peteruithoven 2013-12-23 18:05:47 +01:00
parent 0a51cee8c9
commit 87a4c2a830

View File

@ -266,8 +266,7 @@ function M.set(key, value, noCommit)
return false,"Value isn't a valid int or float"
end
end
local valid,m = isValid(value, base)
if not valid then
return false,m
@ -278,7 +277,7 @@ function M.set(key, value, noCommit)
section = M.get(base.subSection)
local rv, msg = uci:set(UCI_CONFIG_NAME, section, UCI_CONFIG_TYPE)
if not rv and msg ~= nil then
local errorMSG = "Issue creating subsection '"..utils.dump(section).."': "..utils.dump(msg);
local errorMSG = "Issue getting subsection '"..utils.dump(base.subSection).."': "..utils.dump(msg);
log:info(errorMSG)
return nil, errorMSG;
end