neft_outward

This commit is contained in:
2026-04-22 01:34:12 +05:30
commit 58d8329dbd
12 changed files with 251 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import logging
def setup_logging():
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s - %(message)s"
)
def get_logger(name):
return logging.getLogger(name)