Right now, different components use different logging styles and levels (or plain prints). We should unify this with a standard logger config and format.
Details
We should:
- Use Python's
logging module or loguru with a shared config.
- Add timestamp, component, level (INFO/ERROR/etc.), and color if possible.
- Replace
print() calls with appropriate logger calls across services.
This helps when running multiple components together in dev or prod.
Right now, different components use different logging styles and levels (or plain prints). We should unify this with a standard logger config and format.
Details
We should:
loggingmodule orloguruwith a shared config.print()calls with appropriate logger calls across services.This helps when running multiple components together in dev or prod.