Skip to content

Commit 2d427bb

Browse files
author
E506806
committed
Fix: remove forgoten prints
1 parent 0b8c25a commit 2d427bb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

python/jmxquery/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ def base64json(self):
162162
"""
163163
json_result = self.json()
164164
json_result = json_result.encode('ascii')
165-
print(json_result)
166165
return base64.b64encode(json_result).decode("utf-8")
167166

168167
class JMXConnection(object):
@@ -240,7 +239,6 @@ def __run_method(self, method: List[JMXMethod], timeout) -> str:
240239
command.extend(["-c", method.base64json()])
241240
logger.debug("Running command: " + str(command))
242241

243-
print(command)
244242
output = ""
245243
try:
246244
output = subprocess.run(command,

0 commit comments

Comments
 (0)