mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
16 lines
564 B
Python
16 lines
564 B
Python
import logging
|
|
|
|
import ptscripts
|
|
|
|
ptscripts.register_tools_module("tools.changelog")
|
|
ptscripts.register_tools_module("tools.ci")
|
|
ptscripts.register_tools_module("tools.docs")
|
|
ptscripts.register_tools_module("tools.pkg")
|
|
ptscripts.register_tools_module("tools.pkg.repo")
|
|
ptscripts.register_tools_module("tools.pkg.build")
|
|
ptscripts.register_tools_module("tools.pre_commit")
|
|
ptscripts.register_tools_module("tools.release")
|
|
ptscripts.register_tools_module("tools.vm")
|
|
|
|
for name in ("boto3", "botocore", "urllib3"):
|
|
logging.getLogger(name).setLevel(logging.INFO)
|