Merge pull request #46 from VEAF/development

corrected a typo (log:war instead of log:warn)
This commit is contained in:
mrSkortch 2020-06-22 03:05:27 -06:00 committed by GitHub
commit 824c8b2bbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4323,7 +4323,7 @@ function mist.utils.oneLineSerialize(tbl)
tbl_str[#tbl_str + 1] = mist.utils.oneLineSerialize(val) tbl_str[#tbl_str + 1] = mist.utils.oneLineSerialize(val)
tbl_str[#tbl_str + 1] = ', ' --I think this is right, I just added it tbl_str[#tbl_str + 1] = ', ' --I think this is right, I just added it
else else
log:war('Unable to serialize value type $1 at index $2', mist.utils.basicSerialize(type(val)), tostring(ind)) log:warn('Unable to serialize value type $1 at index $2', mist.utils.basicSerialize(type(val)), tostring(ind))
end end
end end