Skip to content

Commit 641cddd

Browse files
committed
tidy
1 parent 2b030fa commit 641cddd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

backend/src/log_structure.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
logger.setLevel("INFO")
1212

1313

14-
# firehose_logger = None
14+
firehose_logger = FirehoseLogger()
1515

1616

1717
def function_info(func):
1818
"""This decorator prints the execution information for the decorated function."""
1919

2020
@wraps(func)
2121
def wrapper(*args, **kwargs):
22-
firehose_logger = FirehoseLogger()
2322
event = args[0] if args else {}
2423
print(f"Event: {event}")
2524
headers = event.get("headers", {})

0 commit comments

Comments
 (0)