util.serialization: Write nil for non-serializable data types, and bump the log level to 'error' 0.4.1
authorMatthew Wild <mwild1@gmail.com>
Tue, 05 May 2009 18:07:13 +0100
changeset 1128 b2e548344d61
parent 1127 3911e81aff19
child 1129 3ee9047334db
util.serialization: Write nil for non-serializable data types, and bump the log level to 'error'
util/serialization.lua
--- 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