papi: truncate long logger messages

Dumping whole cli_inband output causes huge unformatted messages written
to logger, so truncate these to avoid that.

Type: fix

Change-Id: I59565a98e3595cbfe4971cc346e104cb198d8f24
Signed-off-by: Klement Sekera <ksekera@cisco.com>
This commit is contained in:
Klement Sekera
2019-09-12 09:01:06 +00:00
committed by Ole Trøan
parent 7ca5aaac10
commit 5e2f84d2cf

View File

@ -665,7 +665,10 @@ class VPPApiClient(object):
self.transport.resume()
self.logger.debug('Return from {!r}'.format(r))
s = 'Return value: {!r}'.format(r)
if len(s) > 80:
s = s[:80] + "..."
self.logger.debug(s)
return rl
def _call_vpp_async(self, i, msg, **kwargs):