diff --git a/src/tram/tram/management/commands/pipeline.py b/src/tram/tram/management/commands/pipeline.py index ec97cbef6b..4b8d40a7b3 100644 --- a/src/tram/tram/management/commands/pipeline.py +++ b/src/tram/tram/management/commands/pipeline.py @@ -55,9 +55,7 @@ def handle(self, *args, **options): user, created = User.objects.get_or_create(username="pipeline (manual)") if created: - self.stdout.write( - f"Created User '{user.username}' to handle manual submissions" - ) + logger.info(f"Created User '{user.username}' to handle manual submissions") if subcommand == ADD: filepath = options["file"]