@@ -894,6 +894,16 @@ def get_status_message(self, nindent=0, extra_lines_before=None,
894894 lines += ['%s%s' % (prefix , x ) for x in extra_lines_after ]
895895 return lines , prefix
896896
897+ # Re-enable this once the environment is crystalized on initialization
898+ # @property
899+ # def print_name(self):
900+ # r"""str: Name of the class object."""
901+ # out = super(CommBase, self).print_name
902+ # model_name = self.full_model_name
903+ # if model_name:
904+ # out += '[%s]' % model_name
905+ # return out
906+
897907 def printStatus (self , * args , ** kwargs ):
898908 r"""Print status of the communicator."""
899909 nindent = kwargs .get ('nindent' , 0 )
@@ -1986,8 +1996,8 @@ def prepare_message(self, *args, header_kwargs=None, skip_serialization=False,
19861996 elif isinstance (msg .args , bytes ) and (msg .args == YGG_CLIENT_EOF ):
19871997 once_per_partner = True
19881998 if once_per_partner and (self .partner_copies > 1 ):
1989- self .info ("Sending %s to %d model(s)" , msg .args ,
1990- self .partner_copies )
1999+ self .debug ("Sending %s to %d model(s)" , msg .args ,
2000+ self .partner_copies )
19912001 for i in range (self .partner_copies - 1 ):
19922002 msg .add_message (args = msg .args ,
19932003 header = copy .deepcopy (msg .header ))
0 commit comments