Changeset

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
parents 1127:3911e81aff19
children 1129:3ee9047334db
files util/serialization.lua
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
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