# HG changeset patch # User RhodeCode Admin # Date 2023-07-18 07:38:39 # Node ID f619b34fb906db5da7bd9d69b848cc6c43b543b4 # Parent 8fcf8b0851233f8d15541b1944ca4f7854818ae2 core: unify startup log for pyramid diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -1,4 +1,5 @@ syntax: glob + *.orig *.pyc *.swp diff --git a/vcsserver/http_main.py b/vcsserver/http_main.py --- a/vcsserver/http_main.py +++ b/vcsserver/http_main.py @@ -771,8 +771,7 @@ def main(global_config, **settings): pyramid_app = HTTPApplication(settings=settings, global_config=global_config).wsgi_app() total_time = time.time() - start_time - log.info('Pyramid app `%s` created and configured in %.2fs', - pyramid_app.__class__, total_time) + log.info('Pyramid app created and configured in %.2fs', total_time) return pyramid_app