diff --git a/awx/main/management/commands/profile_sql.py b/awx/main/management/commands/profile_sql.py index bbcf10dd27..37f6658901 100644 --- a/awx/main/management/commands/profile_sql.py +++ b/awx/main/management/commands/profile_sql.py @@ -19,3 +19,7 @@ class Command(BaseCommand): profile_sql.delay( threshold=options['threshold'], minutes=options['minutes'] ) + print(f"Logging initiated with a threshold of {options['threshold']} second(s) and a duration of" + f" {options['minutes']} minute(s), any queries that meet criteria can" + f" be found in /var/log/tower/profile/." + )