From 13deee25313c31b013bcd769d1c6d59c617d9c27 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Sat, 4 Apr 2020 13:59:35 -0400 Subject: [PATCH] chore: remove cycle time printf --- runtime/src/sandbox.c | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/src/sandbox.c b/runtime/src/sandbox.c index 350f4ba..e42cc16 100644 --- a/runtime/src/sandbox.c +++ b/runtime/src/sandbox.c @@ -140,7 +140,6 @@ done: assert(sndsz == curr->request_response_data_length); // Get End Timestamp curr->total_time = __getcycles() - curr->start_time; - printf("Function returned in %lu cycles\n", curr->total_time); #ifndef USE_HTTP_UVIO int r = send(curr->client_socket_descriptor, curr->request_response_data, sndsz, 0);