summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index 085239b..d98d92d 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -443,13 +443,13 @@ local printtableentries = function(tablename)
while row do
count = count + 1
for name,val in pairs(row) do
- APP.logevent(name.." = "..val..", ")
+ logevent(name.." = "..val..", ")
end
row = cur:fetch (row, "a")
end
-- close everything
cur:close()
- APP.logevent("Table "..tablename.." contains "..count.." rows")
+ logevent("Table "..tablename.." contains "..count.." rows")
end
-- ################################################################################