Software /
code /
prosody
Diff
util/serialization.lua @ 1128:b2e548344d61 0.4.1
util.serialization: Write nil for non-serializable data types, and bump the log level to 'error'
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 05 May 2009 18:07:13 +0100 |
parent | 1107:ebda1845ebc1 |
child | 1135:355f9487ab38 |
line wrap: on
line diff
--- a/util/serialization.lua Tue May 05 21:13:09 2009 +0500 +++ b/util/serialization.lua Tue May 05 18:07:13 2009 +0100 @@ -52,7 +52,8 @@ elseif type(o) == "boolean" then func(t, (o and "true" or "false")); else - log("warn", "cannot serialize a %s: %s", type(o), debug_traceback()) + log("error", "cannot serialize a %s: %s", type(o), debug_traceback()) + func(t, "nil,\n"); end end