This commit is contained in:
hackish 2023-07-31 16:07:29 -07:00
parent 804871bd04
commit 281bd030a0
9 changed files with 201 additions and 36 deletions

4
dotgift/logger.py Normal file
View file

@ -0,0 +1,4 @@
import logging
logging.basicConfig(format="%(asctime)s - %(message)s", datefmt="%d-%b-%y %H:%M:%S")
logger = logging.getLogger(__name__)