diff --git a/aries_cloudagent/config/argparse.py b/aries_cloudagent/config/argparse.py index b24873d868..717169e5d0 100644 --- a/aries_cloudagent/config/argparse.py +++ b/aries_cloudagent/config/argparse.py @@ -213,6 +213,7 @@ def get_settings(self, args: Namespace): ) return settings + @group(CAT_PROVISION, CAT_START, CAT_UPGRADE) class DebuggerGroup(ArgumentGroup): """Debugger settings.""" @@ -227,8 +228,9 @@ def add_arguments(self, parser: ArgumentParser): env_var="ACAPY_DEBUG", help=( "Enables a remote debugging service that can be accessed " - "using ptvsd for Visual Studio Code. The framework will wait " - "for the debugger to connect at start-up. Default: false." + "using the Debug Adapter Protocol (supported by Visual Studio Code). " + "The framework will wait for the debugger to connect at start-up. " + "Default: false." ), )