Skip to content

Commit 33d7482

Browse files
committed
* Make --debug a boolean
* Make debug a bit more verbose
1 parent 0468e2a commit 33d7482

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

apic-em_get_inventory_stats/apic-em_get_inventory_stats.py

+11-8
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import json
3939
import operator
4040

41-
DEBUG = 0
41+
DEBUG = False
4242
REST_TIMEOUT = 300
4343
REST_RETRY_INTERVAL = 1
4444
REST_RETRIES = 3
@@ -89,22 +89,25 @@ def fetch_url(url, error, p=False, timeout=REST_TIMEOUT):
8989
req = Request(req, url, data=data, params=params, headers=headers)
9090
ph = req.prepare()
9191

92-
if DEBUG > 0:
92+
if DEBUG:
9393
print('DEBUG: Requested URL {}'.format(url))
9494
print('DEBUG: Headers = ')
9595
for h in ph.headers:
96-
print(' {} : {}'.format(h, ph.headers[h]))
96+
print(' {} : {}'.format(h, ph.headers[h]))
97+
print('DEBUG: Parameters = ')
98+
for par, val in params.items():
99+
print(' {} : {}'.format(par, val))
97100
print('DEBUG: Body = {}'.format(ph.body))
98101

99102
res = s.send(ph, verify=False, timeout=timeout)
100103

101104
if res.status_code > 299:
102-
if DEBUG > 0:
105+
if DEBUG:
103106
print('DEBUG: The server returned code: {} response: {}'.format(
104107
str(res.status_code), res.text))
105108
print('DEBUG: Response Headers: ')
106109
for h in res.headers:
107-
print(' {} : {}'.format(h, res.headers[h]))
110+
print(' {} : {}'.format(h, res.headers[h]))
108111
error.set_code(res.status_code)
109112
j = res.json()
110113
error.set_msg(j['response']['message'])
@@ -213,9 +216,9 @@ def get_inventory(host, port, ticket, error):
213216
help='APIC-EM API password', required=True)
214217
parser.add_argument('--port', '-P', type=int,
215218
help='APIC-EM web port (default: 443)')
216-
parser.add_argument('--debug', '-d', type=int,
217-
help='Set debug level (default: 0)')
218-
parser.set_defaults(debug=0, port=443)
219+
parser.add_argument('--debug', '-d', action='store_true',
220+
help='Enable debugging (default: False)')
221+
parser.set_defaults(debug=False, port=443)
219222
args = parser.parse_args()
220223

221224
if args.debug:

0 commit comments

Comments
 (0)