mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
Show API endpoints when dddp command run with verbosity above 1.
This commit is contained in:
parent
5e545ee7c2
commit
d7ea54539c
1 changed files with 3 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue