From 2465282a56caaecb81996c5fcbad49c8b58fc0bd Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Tue, 10 Jul 2012 07:26:48 -0400 Subject: [PATCH] Don't show stray logging statement. --- zipline/core/host.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zipline/core/host.py b/zipline/core/host.py index fe97904f..804b25e6 100644 --- a/zipline/core/host.py +++ b/zipline/core/host.py @@ -44,6 +44,7 @@ class ComponentHost(object): Run the host. """ log.info('===== PARENT PID: %s' % os.getppid()) + log.info('===== PID: %s' % os.getpid()) self.open() #self.shutdown()