Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Navya-Sree
/
multi-agent-code-assistant
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Navya-Sree
commited on
Dec 22, 2025
Commit
b0f5ce7
·
verified
·
1 Parent(s):
cfdaece
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+7
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import logging
2
+
3
+
logging.basicConfig(level=logging.INFO)
4
+
logger = logging.getLogger(__name__)
5
+
6
+
def log_event(agent, event, details):
7
+
logger.info(f"{agent}: {event} - {details}")