corrected a typo (log:war instead of log:warn)

This commit is contained in:
David Pierron 2019-12-28 15:55:17 +01:00
parent 40a186c71d
commit 7501473978

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] = ', ' --I think this is right, I just added it
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