|
38 | 38 | import json
|
39 | 39 | import operator
|
40 | 40 |
|
41 |
| -DEBUG = 0 |
| 41 | +DEBUG = False |
42 | 42 | REST_TIMEOUT = 300
|
43 | 43 | REST_RETRY_INTERVAL = 1
|
44 | 44 | REST_RETRIES = 3
|
@@ -89,22 +89,25 @@ def fetch_url(url, error, p=False, timeout=REST_TIMEOUT):
|
89 | 89 | req = Request(req, url, data=data, params=params, headers=headers)
|
90 | 90 | ph = req.prepare()
|
91 | 91 |
|
92 |
| - if DEBUG > 0: |
| 92 | + if DEBUG: |
93 | 93 | print('DEBUG: Requested URL {}'.format(url))
|
94 | 94 | print('DEBUG: Headers = ')
|
95 | 95 | 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)) |
97 | 100 | print('DEBUG: Body = {}'.format(ph.body))
|
98 | 101 |
|
99 | 102 | res = s.send(ph, verify=False, timeout=timeout)
|
100 | 103 |
|
101 | 104 | if res.status_code > 299:
|
102 |
| - if DEBUG > 0: |
| 105 | + if DEBUG: |
103 | 106 | print('DEBUG: The server returned code: {} response: {}'.format(
|
104 | 107 | str(res.status_code), res.text))
|
105 | 108 | print('DEBUG: Response Headers: ')
|
106 | 109 | for h in res.headers:
|
107 |
| - print(' {} : {}'.format(h, res.headers[h])) |
| 110 | + print(' {} : {}'.format(h, res.headers[h])) |
108 | 111 | error.set_code(res.status_code)
|
109 | 112 | j = res.json()
|
110 | 113 | error.set_msg(j['response']['message'])
|
@@ -213,9 +216,9 @@ def get_inventory(host, port, ticket, error):
|
213 | 216 | help='APIC-EM API password', required=True)
|
214 | 217 | parser.add_argument('--port', '-P', type=int,
|
215 | 218 | 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) |
219 | 222 | args = parser.parse_args()
|
220 | 223 |
|
221 | 224 | if args.debug:
|
|
0 commit comments