Skip to content

Commit 0eba944

Browse files
authored
Merge pull request #2 from Display-Lab/GUI-Development
2 parents 3c0295a + dee6db9 commit 0eba944

File tree

6 files changed

+392
-5
lines changed

6 files changed

+392
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
LDTvenv/
22
venv/
3-
*.pyc
3+
*.pyc
4+
.DS_Store

LDT.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ def run_requests(behavior, threadIndex, requestID, barrier):
513513
########### Main Script Body ################################
514514
def main():
515515
log.debug("\t\t# LDT started #")
516-
print(f"\n\t\tWelcome to the Leakdown Tester, Version {ldtVersion}!")
516+
log.info(f"\n\t\tWelcome to the Leakdown Tester, Version {ldtVersion}!")
517517
try:
518518
behavior = set_behavior() # Set behavior
519519
calc_total_reqs(behavior) # Calculate request number total
@@ -537,7 +537,7 @@ def main():
537537
thisThread.join()
538538

539539
log.debug("\t\t# LDT complete #\n\n")
540-
print("\n\t\tLeakdown test complete.\n")
540+
log.info("\n\t\tLeakdown test complete.\n")
541541
exit(0)
542542

543543

LDT_Addendum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Version of the Leakdown Tester
2-
ldtVersion = "1.0.1"
2+
ldtVersion = "1.1.0"
33

44

55
## JSON content 'header' wrapper section for in-situ payload compilation:

0 commit comments

Comments
 (0)