From 9d9ee904ae7eb020f0cec3a8b8046efb7c42ed73 Mon Sep 17 00:00:00 2001 From: Joseph Umana Date: Fri, 25 Jul 2025 17:05:11 -0400 Subject: [PATCH] remove useless prints Signed-off-by: Joseph Umana --- main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.c b/main.c index 6a3d3ff..1e90833 100644 --- a/main.c +++ b/main.c @@ -56,7 +56,6 @@ void execCommand(char* command) { } void getExecStats(pid_t pid, RunResult* result) { - puts("getExecStats"); struct rusage usage; time_t start = time(NULL); @@ -76,7 +75,6 @@ void getExecStats(pid_t pid, RunResult* result) { } void setExecFlags(RunResult* result, time_t runtimeSeconds, size_t memoryLimit) { - printf("%d\n", result->exitCode); if (result->exitCode == 69) { result->flags |= Nice; strcpy(result->feedback, "Nice!");