From: Quentin Smith Date: Tue, 27 Nov 2007 07:11:03 +0000 (-0500) Subject: Make the profiling depend on an environment variable "SIPB_XEN_PROFILE" being set... X-Git-Tag: sipb-xen-www/1~30 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/025d921c46ca4522cff03c5e715a965bbd8f863f?ds=sidebyside Make the profiling depend on an environment variable "SIPB_XEN_PROFILE" being set, else don't profile. svn path=/trunk/web/; revision=248 --- diff --git a/main.py b/main.py index d4ae1c5..ab626e2 100755 --- a/main.py +++ b/main.py @@ -640,7 +640,8 @@ if __name__ == '__main__': if not operation: operation = 'list' - main(operation, u, fields) - #import profile - #profile.run('main(operation, u, fields)', 'log-'+operation) - + if os.getenv("SIPB_XEN_PROFILE"): + import profile + profile.run('main(operation, u, fields)', 'log-'+operation) + else: + main(operation, u, fields)