Skip to content

Commit

Permalink
Removed logging from tracer
Browse files Browse the repository at this point in the history
  • Loading branch information
Endogen committed May 13, 2024
1 parent f429823 commit 29f5db9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracting/execution/metering/tracer.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ Tracer_trace(Tracer * self, PyFrameObject * frame, int what, PyObject * arg) {

if (new_memory_usage > self -> last_frame_mem_usage) {
self -> total_mem_usage += (new_memory_usage - self -> last_frame_mem_usage);
printf("[TRACER] TX total memory usage: %ld\n", self -> total_mem_usage);
}

self -> last_frame_mem_usage = new_memory_usage;
Expand Down

0 comments on commit 29f5db9

Please sign in to comment.