Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/2a832bbadf1797b39e7ed06ced45ba648036ba99 You should set ROOT_URL correctly, otherwise the web may not work correctly.

no log: update log call for update_pools() decorator

pull/1662/head
Vitiko 3 years ago
parent 3653ef163f
commit 2a832bbadf

@ -151,7 +151,10 @@ def update_pools(f):
updated = _update_pool(args[args_spec.index("media_type")], profile_id)
if updated:
logging.info("BAZARR pools update elapsed time: %s", time.time() - start)
logging.debug(
"BAZARR pools update elapsed time: %sms",
round((time.time() - start) * 1000, 2),
)
return f(*args, **kwargs)

Loading…
Cancel
Save