diff --git a/zipline/core/monitor.py b/zipline/core/monitor.py index c274df20..bfb13037 100644 --- a/zipline/core/monitor.py +++ b/zipline/core/monitor.py @@ -143,7 +143,7 @@ class Controller(object): if (old, new) not in CONTROLLER_TRANSITIONS: raise RuntimeError("Invalid State Transition : %s -> %s" %(old, new)) else: - log.error("State Transition : %s -> %s" %(old, new)) + log.info("State Transition : %s -> %s" %(old, new)) def run(self): self.running = True @@ -364,7 +364,7 @@ class Controller(object): fail_handlers = { } if component in self.topology or self.freeform: - log.error('Component "%s" timed out' % component) + log.warning('Component "%s" timed out' % component) self.tracked.remove(component) fail_handlers.get(component, universal)() diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py index 03320e09..34dfae89 100644 --- a/zipline/finance/performance.py +++ b/zipline/finance/performance.py @@ -288,7 +288,7 @@ class PerformanceTracker(object): msg = zp.PERF_FRAME(self.to_dict()) self.results_socket.send(msg) else: - log.info(self.to_dict()) + log.debug(self.to_dict()) # if self.trading_environment.max_drawdown: