From 494acf28c661219dabbfcacc19f544651307f4d4 Mon Sep 17 00:00:00 2001 From: Ricky Ng-Adam Date: Thu, 22 Aug 2024 09:17:16 -0400 Subject: [PATCH] issue #3182: update command-line help for --debug Signed-off-by: Ricky Ng-Adam --- aries_cloudagent/config/argparse.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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." ), )