Skip to content

Commit 7ed8d68

Browse files
committed
Remove logging
1 parent 372671d commit 7ed8d68

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/git_autograder/branch.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,15 @@ def name(self) -> str:
2828
@property
2929
def reflog(self) -> List[GitAutograderReflogEntry]:
3030
output = self.branch.repo.git.reflog("show", self.name).splitlines()
31-
print(output)
3231
# We need to dynamically configure the regex
3332
regex_str = (
3433
"^([a-f0-9]+)(?: \\(.*\\))? " + self.name + "@\\{(\\d+)\\}: ([^:]+): (.+)$"
3534
)
3635
reflog_pattern = re.compile(regex_str)
3736
entries = []
3837
for line in output:
39-
print(reflog_pattern)
40-
print(line)
4138
groups = reflog_pattern.match(line)
4239
if groups:
43-
print(groups)
4440
sha, index, action, message = groups.groups()
4541
entries.append(
4642
GitAutograderReflogEntry(

0 commit comments

Comments
 (0)