mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
* Introduce tooldata class Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Refactoring list command - Introduce show_list function that is part of UI - ListCommand class can be used as library to retrieve metadata. - Rename ListCommand to MetadataFactory - Rename action method to getList Signed-off-by: Hiroshi Miura <miurahr@linux.com>
59 lines
801 B
INI
59 lines
801 B
INI
[loggers]
|
|
keys=root,aqt
|
|
|
|
[logger_root]
|
|
level=NOTSET
|
|
handlers=console
|
|
|
|
[logger_aqt]
|
|
level=DEBUG
|
|
handlers=console
|
|
propagate=0
|
|
qualname=aqt
|
|
|
|
[logger_aqt_main]
|
|
level=INFO
|
|
propagate=1
|
|
qualname=aqt.main
|
|
|
|
[logger_aqt_archives]
|
|
level=INFO
|
|
propagate=1
|
|
qualname=aqt.archives
|
|
|
|
[logger_aqt_helper]
|
|
level=INFO
|
|
propagate=1
|
|
qualname=aqt.helper
|
|
|
|
[logger_aqt.installer]
|
|
level=DEBUG
|
|
propagate=1
|
|
qualname=aqt.installer
|
|
|
|
[logger_aqt_list]
|
|
level=INFO
|
|
propagate=1
|
|
qualname=aqt.list
|
|
|
|
[logger_aqt_updater]
|
|
level=INFO
|
|
propagate=1
|
|
qualname=aqt.updater
|
|
|
|
[formatters]
|
|
keys=verbose
|
|
|
|
[formatter_verbose]
|
|
format=%(asctime)s - %(name)s - %(levelname)s - %(module)s %(thread)d %(message)s
|
|
class=logging.Formatter
|
|
|
|
[handlers]
|
|
keys=console
|
|
|
|
[handler_console]
|
|
level=DEBUG
|
|
class=logging.StreamHandler
|
|
formatter=verbose
|
|
args=(sys.stderr,)
|