From 459c8afd6ce5962b4ec09c614720b2f7fdf86f70 Mon Sep 17 00:00:00 2001 From: db0 Date: Wed, 12 Jul 2023 12:51:24 +0200 Subject: [PATCH] fix_linkl --- fediseer/consts.py | 2 +- fediseer/templates/index.md | 2 +- server.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fediseer/consts.py b/fediseer/consts.py index a2844b6..3c5c9e9 100644 --- a/fediseer/consts.py +++ b/fediseer/consts.py @@ -1,4 +1,4 @@ -FEDISEER_VERSION = "0.5.0" +FEDISEER_VERSION = "0.5.1" SUPPORTED_SOFTWARE = [ "lemmy", "mastodon", diff --git a/fediseer/templates/index.md b/fediseer/templates/index.md index 5933437..6cf1329 100644 --- a/fediseer/templates/index.md +++ b/fediseer/templates/index.md @@ -12,7 +12,7 @@ However using the endorsement system, you can create a further customized whitel ## REST API -[Full API Documentation](/api) +[Full API Documentation](/api/) ## Community diff --git a/server.py b/server.py index bc8454a..30d0d28 100644 --- a/server.py +++ b/server.py @@ -10,7 +10,7 @@ from loguru import logger if __name__ == "__main__": # Only setting this for the WSGI logs - logging.basicConfig(format='%(asctime)s - %(levelname)s - %(module)s:%(lineno)d - %(message)s', level=logging.WARNING) + logging.basicConfig(format='%(asctime)s - %(levelname)s - %(module)s:%(lineno)d - %(message)s', level=logging.DEBUG) from waitress import serve logger.init("WSGI Server", status="Starting")