diff --git a/dddp/main.py b/dddp/main.py index babbc36..66c6f22 100644 --- a/dddp/main.py +++ b/dddp/main.py @@ -191,8 +191,9 @@ class DDPLauncher(object): self.logger.debug('PostgresGreenlet start') self._stop_event.clear() self.print('=> Discovering DDP endpoints...') - for api_path in sorted(self.api.api_path_map()): - self.logger.debug(' %s', api_path) + if self.verbosity > 1: + for api_path in sorted(self.api.api_path_map()): + print(' %s' % api_path) # start greenlets self.pgworker.start()