diff options
Diffstat (limited to 'Biz/Storybook.py')
| -rwxr-xr-x | Biz/Storybook.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Biz/Storybook.py b/Biz/Storybook.py index 57b84c6..164e845 100755 --- a/Biz/Storybook.py +++ b/Biz/Storybook.py @@ -56,7 +56,8 @@ PORT = int(os.environ.get("PORT", "3000")) area = App.from_env() app = ludic.web.LudicApp(debug=area == App.Area.Test) -log = Log.setup(logging.DEBUG if area == App.Area.Test else logging.ERROR) +log = logging.getLogger(__name__) +Log.setup(log, logging.DEBUG if area == App.Area.Test else logging.ERROR) Sqids = sqids.Sqids() |
