feat: Squash all min-features into full

This commit is contained in:
Rick Lan
2025-12-26 10:55:09 +08:00
parent 69bef3401a
commit ad6979485e
382 changed files with 104541 additions and 146 deletions

View File

@@ -0,0 +1,11 @@
import os
import logging
# set up logging
LOGLEVEL = os.environ.get('LOGLEVEL', 'INFO').upper()
logger = logging.getLogger('panda')
logger.setLevel(LOGLEVEL)
handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter('%(message)s'))
logger.addHandler(handler)