- https://github.com/koreader/koreader-base/pull/2016
This commit is contained in:
Benoit Pierre
2025-01-25 21:58:40 +01:00
committed by GitHub
parent cda2dcaacc
commit d270f08ceb
3 changed files with 1 additions and 5 deletions

2
base

Submodule base updated: c844e4b2f8...7ecda58843

View File

@@ -1,6 +1,3 @@
package.path = "?.lua;common/?.lua;frontend/?.lua;" .. package.path
package.cpath = "?.so;common/?.so;/usr/lib/lua/?.so;" .. package.cpath
-- turn off debug by default and set log level to warning
require("dbg"):turnOff()
local logger = require("logger")

View File

@@ -1,7 +1,6 @@
describe("Dbg module", function()
local dbg, dbg_on
setup(function()
package.path = "?.lua;common/?.lua;frontend/?.lua;" .. package.path
dbg = require("dbg")
dbg_on = dbg.is_on
end)