# HG changeset patch # User Dennis Fink # Date 2014-08-10 23:25:17 # Node ID e31a701baa9865f03d4a96fee86127e128393a82 # Parent 7518117d407ecc242a1134a82f4e0f0e825a12ff Log loading of json files diff --git a/ennstatus/status/functions.py b/ennstatus/status/functions.py --- a/ennstatus/status/functions.py +++ b/ennstatus/status/functions.py @@ -76,6 +76,7 @@ def _check_server(data): def _load_single_server(filename): + current_app.logger.info('Loading {}'.format(filename)) try: with open(filename, encoding='utf-8') as f: server = json.load(f)