Skip to content

Commit 1296da2

Browse files
committed
revert debug prints
1 parent 7a6d394 commit 1296da2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

codeflash/benchmarking/codeflash_trace.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def __call__(self, func: Callable) -> Callable:
108108

109109
@functools.wraps(func)
110110
def wrapper(*args, **kwargs) -> Any: # noqa: ANN002, ANN003, ANN401
111-
print("XXX CALLED THE CODEFLASH_TRACE MARKER")
112111
# Initialize thread-local active functions set if it doesn't exist
113112
if not hasattr(self._thread_local, "active_functions"):
114113
self._thread_local.active_functions = set()
@@ -133,9 +132,6 @@ def wrapper(*args, **kwargs) -> Any: # noqa: ANN002, ANN003, ANN401
133132
benchmark_function_name = os.environ.get("CODEFLASH_BENCHMARK_FUNCTION_NAME", "")
134133
benchmark_module_path = os.environ.get("CODEFLASH_BENCHMARK_MODULE_PATH", "")
135134
benchmark_line_number = os.environ.get("CODEFLASH_BENCHMARK_LINE_NUMBER", "")
136-
print("XXX benchmark_function_name", benchmark_function_name)
137-
print("XXX benchmark_module_path", benchmark_module_path)
138-
print("XXX benchmark_line_number", benchmark_line_number)
139135
# Get class name
140136
class_name = ""
141137
qualname = func.__qualname__

0 commit comments

Comments
 (0)