MonitoringPlugin: Multiline verbose output, cleanup
This commit is contained in:
parent
97d6a3669e
commit
af6b9daf16
|
@ -361,12 +361,12 @@ class MonitoringPlugin(object):
|
||||||
bol = 'V' + str(level) + ':' + ' ' * level
|
bol = 'V' + str(level) + ':' + ' ' * level
|
||||||
if prefix:
|
if prefix:
|
||||||
bol += '%s' % prefix
|
bol += '%s' % prefix
|
||||||
if type(output) in [str, str, ]:
|
if type(output) in [str, ]:
|
||||||
print((bol + output))
|
print(bol + output.lstrip().rstrip().replace('\n', '\n' + bol))
|
||||||
elif type(output) in [list, ]:
|
elif type(output) in [list, ]:
|
||||||
print(('\n'.join( ['%s%s' % (bol, l) for l in output] ) ))
|
print('\n'.join( ['%s%s' % (bol, l) for l in output] ) )
|
||||||
else:
|
else:
|
||||||
print(('%s%s' % (bol, output) ))
|
print('%s%s' % (bol, output) )
|
||||||
|
|
||||||
|
|
||||||
def max_returncode(self, returncodes):
|
def max_returncode(self, returncodes):
|
||||||
|
|
Loading…
Reference in a new issue