Reenable logging for non-release builds
This commit is contained in:
parent
61d27efd69
commit
09b85464bd
1 changed files with 4 additions and 3 deletions
|
@ -12,9 +12,10 @@ import routes/[
|
||||||
const configPath {.strdefine.} = "./nitter.conf"
|
const configPath {.strdefine.} = "./nitter.conf"
|
||||||
let (cfg, fullCfg) = getConfig(configPath)
|
let (cfg, fullCfg) = getConfig(configPath)
|
||||||
|
|
||||||
# Silence Jester's query warning
|
when defined(release):
|
||||||
addHandler(newConsoleLogger())
|
# Silence Jester's query warning
|
||||||
setLogFilter(lvlError)
|
addHandler(newConsoleLogger())
|
||||||
|
setLogFilter(lvlError)
|
||||||
|
|
||||||
let http = if cfg.useHttps: "https" else: "http"
|
let http = if cfg.useHttps: "https" else: "http"
|
||||||
stdout.write &"Starting Nitter at {http}://{cfg.hostname}\n"
|
stdout.write &"Starting Nitter at {http}://{cfg.hostname}\n"
|
||||||
|
|
Loading…
Reference in a new issue