Add more logging to check on command method & args

BUG=b:202033598
TEST=None

Change-Id: I9580e280fc7a7d279e4e0e39784a356944d6663b
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/3271056
Reviewed-by: Aashutosh Kalyankar <aashutoshk@chromium.org>
Reviewed-by: Congbin Guo <guocb@chromium.org>
Reviewed-by: Harpreet Grewal <harpreet@chromium.org>
Tested-by: Aashutosh Kalyankar <aashutoshk@chromium.org>
Auto-Submit: Aashutosh Kalyankar <aashutoshk@chromium.org>
Commit-Queue: Harpreet Grewal <harpreet@chromium.org>
Commit-Queue: Aashutosh Kalyankar <aashutoshk@chromium.org>
diff --git a/server/cros/ap_configurators/static_ap_configurator.py b/server/cros/ap_configurators/static_ap_configurator.py
index 849e740..4fc1be8 100644
--- a/server/cros/ap_configurators/static_ap_configurator.py
+++ b/server/cros/ap_configurators/static_ap_configurator.py
@@ -3,6 +3,7 @@
 # found in the LICENSE file.
 
 import collections
+import logging
 import pprint
 import re
 import xmlrpclib
@@ -142,6 +143,9 @@
         """Allow cartridge to run commands in _command_list"""
         self.check_pdu_status()
         for command in self._command_list:
+            args_as_str =  ", ".join(command.args)
+            logging.debug("Command to run method: %s", command.method.__name__)
+            logging.debug("Command to run with args: %s", args_as_str)
             command.method(*command.args)