feat: Setup basic logging and main function

This commit is contained in:
2026-02-04 10:39:40 -07:00
committed by Tanner Collin (aider)
parent 2d2c4525ac
commit af142925a3

View File

@@ -0,0 +1,8 @@
import os, logging
DEBUG = os.environ.get('DEBUG')
logging.basicConfig(
format='[%(asctime)s] %(levelname)s %(module)s/%(funcName)s - %(message)s',
level=logging.DEBUG if DEBUG else logging.INFO)
def main():
pass