@@ -337,6 +337,7 @@ def spawn_primary(self, name, destroy=True, use_logging=False):
337
337
Args:
338
338
name: name for a new node (str).
339
339
destroy: should we convert this backup into a node?
340
+ use_logging: enable python logging.
340
341
341
342
Returns:
342
343
New instance of PostgresNode.
@@ -362,6 +363,7 @@ def spawn_replica(self, name, destroy=True, use_logging=False):
362
363
Args:
363
364
name: name for a new node (str).
364
365
destroy: should we convert this backup into a node?
366
+ use_logging: enable python logging.
365
367
366
368
Returns:
367
369
New instance of PostgresNode.
@@ -947,7 +949,7 @@ def replicate(self, name, username=None,
947
949
name: replica's name (str).
948
950
username: database user name (str).
949
951
xlog_method: a method for collecting the logs ('fetch' | 'stream').
950
- use_logging: enable python logging
952
+ use_logging: enable python logging.
951
953
"""
952
954
953
955
backup = self .backup (username = username ,xlog_method = xlog_method )