diff --git a/nucypher/characters/lawful.py b/nucypher/characters/lawful.py index 21f01530b..6dbdafb5e 100644 --- a/nucypher/characters/lawful.py +++ b/nucypher/characters/lawful.py @@ -591,7 +591,7 @@ class Ursula(Teacher, Character, Miner): # if is_me: self.known_nodes.record_fleet_state(additional_nodes_to_track=[self]) - message = "Initialized Self {} | {}".format(self.__class__.__name__, self.checksum_public_address) + message = "THIS IS YOU: {}: {}".format(self.__class__.__name__, self) self.log.info(message) else: message = "Initialized Stranger {} | {}".format(self.__class__.__name__, self) diff --git a/nucypher/cli/main.py b/nucypher/cli/main.py index c2f107231..e5623c187 100644 --- a/nucypher/cli/main.py +++ b/nucypher/cli/main.py @@ -386,7 +386,6 @@ Delete {}?'''.format(ursula_config.config_root), abort=True) # Produce - Step 2 # ursula = ursula_config(known_nodes=teacher_nodes) - ursula_config.log.debug("Initialized Ursula {}".format(ursula), fg='green') # GO! try: @@ -394,7 +393,7 @@ Delete {}?'''.format(ursula_config.config_root), abort=True) # # Run - Step 3 # - click.secho("Running Ursula on {}".format(ursula.rest_interface), fg='green', bold=True) + click.secho("Running Ursula {} on {}".format(ursula, ursula.rest_interface), fg='green', bold=True) if not debug: stdio.StandardIO(UrsulaCommandProtocol(ursula=ursula))