Remove extraneous print

This commit is contained in:
Joshua Boniface 2019-12-25 19:51:16 -05:00
parent b7eddc6ae9
commit b9fe918d7d
1 changed files with 0 additions and 1 deletions

View File

@ -558,7 +558,6 @@ def get_console_log(zk_conn, domain, lines=1000):
# Get the data from ZK
console_log = zkhandler.readdata(zk_conn, '/domains/{}/consolelog'.format(dom_uuid))
print(lines)
# Shrink the log buffer to length lines
shrunk_log = console_log.split('\n')[-lines:]