feat: Squash all min-features into full

This commit is contained in:
Rick Lan
2026-02-13 16:12:28 +08:00
parent 0076d30d62
commit 01e9d51093
537 changed files with 112657 additions and 154 deletions
+11
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)