Remove debugging line from mime-type
authorMyhailo Danylenko <isbear@ukrpost.net>
Fri, 02 Apr 2010 20:00:20 +0300
changeset 102 f3d9d9e67ee4
parent 101 98488a7e6a48
child 103 2cb96eae301a
Remove debugging line from mime-type
examples/mime-type.lua
main.c
--- a/examples/mime-type.lua	Fri Apr 02 19:58:18 2010 +0300
+++ b/examples/mime-type.lua	Fri Apr 02 20:00:20 2010 +0300
@@ -36,7 +36,6 @@
 		local mtype, exts = l:match ( '^([%S]+)%s+(%S.*)$' )
 		if mtype then
 			for ext in exts:gmatch ( '%S+' ) do
-				print ( ("Adding type %s for extension %s"):format ( mtype, ext ) )
 				db[ext] = mtype
 			end
 		end
--- a/main.c	Fri Apr 02 19:58:18 2010 +0300
+++ b/main.c	Fri Apr 02 20:00:20 2010 +0300
@@ -60,7 +60,7 @@
 
 static module_info_t info_lua_experimental = {
 	.branch      = "experimental",
-	.api         = 10,
+	.api         = 12,
 	.version     = PROJECT_VERSION,
 	.description = DESCRIPTION,
 	.requires    = NULL,