Skip to content

Commit fbf25d6

Browse files
KCore: notifyCassiopee: remove debug comments
1 parent 8445e36 commit fbf25d6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Cassiopee/KCore/test/notifyCassiopee.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,12 @@ def parseInstallLogs(userProd):
267267
installLogs = sorted(glob(os.path.join("/stck/cassiope/git/logs/", f"log_*_{userProd}_*")))
268268
for installLog in installLogs:
269269
with open(installLog, 'r') as f: contents = f.readlines()
270-
print(len(contents))
271270
# Find start lines of each module
272271
startLine = 0
273272
endMarker = "correctly installed."
274273
for lineNo, line in enumerate(contents):
275274
if endMarker in line:
276275
startLine = lineNo+1
277-
print(line, startLine)
278276
if startLine < len(contents):
279277
# Print log of the module that did not complete successfully
280278
messageText += f"\n\nInstall log:\n-----------\n\n"

0 commit comments

Comments
 (0)