From: Angus Salkeld Date: Wed, 20 Jun 2012 04:01:29 +0000 (+1000) Subject: Remove duplicate setup_logging() X-Git-Tag: 2014.1~1700 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=cfd1232038286fb14b36d1427d4ce5f7611ba58f;p=openstack-build%2Fheat-build.git Remove duplicate setup_logging() This is already done in load_paste_app() Fixes #146 Change-Id: I3631b7ade06c8b142960abbf9c172461fae93a56 Signed-off-by: Angus Salkeld --- diff --git a/bin/heat-api b/bin/heat-api index 4fb905d7..2fe28816 100755 --- a/bin/heat-api +++ b/bin/heat-api @@ -47,7 +47,6 @@ if __name__ == '__main__': conf(project='heat', prog='heat-api') config.FLAGS = conf rpc.configure(conf) - config.setup_logging(conf) app = config.load_paste_app(conf) diff --git a/bin/heat-metadata b/bin/heat-metadata index 1eb180de..beb5b1e8 100755 --- a/bin/heat-metadata +++ b/bin/heat-metadata @@ -62,7 +62,6 @@ if __name__ == '__main__': conf(project='heat', prog='heat-metadata') config.FLAGS = conf rpc.configure(conf) - config.setup_logging(conf) app = config.load_paste_app(conf)