metadata-alpha.json, elaborate_metadata.py

This commit is contained in:
Tim
2024-04-03 16:26:13 -04:00
parent 3685930d55
commit 1eacc7de4e
5 changed files with 67 additions and 1 deletions

20
logging-alpha.toml Normal file
View File

@@ -0,0 +1,20 @@
# https://docs.python.org/3/library/logging.config.html#logging-config-dictschema
version=1
[loggers.'']
level='INFO'
handlers=['console',]
[loggers.dexorder]
level='DEBUG'
[handlers.console]
class='logging.StreamHandler'
formatter='notime'
stream='ext://sys.stdout'
[formatters.notime]
# https://docs.python.org/3/library/logging.html#logrecord-attributes
format='%(levelname)s %(name)s %(message)s'
# https://docs.python.org/3/library/time.html#time.strftime
datefmt='%Y-%m-%d %H:%M:%S'