Skip to content

Commit d85d7ec

Browse files
author
jghauser
committed
ci(sqlite-format): add debug msg
1 parent ff8ae82 commit d85d7ec

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lua/papis/sqlite-wrapper.lua

+1
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ function M:init()
258258
if self:exists(tbl_name) and (not has_schema_changed(new_schema, old_schema)) then
259259
self[tbl_name] = self:create_tbl_with_methods(tbl_name)
260260
else
261+
log.debug(string.format("The table schema for '%s' has changed", tbl_name))
261262
if self:exists(tbl_name) then
262263
self:drop(tbl_name)
263264
end

0 commit comments

Comments
 (0)