mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
ipa tool: Print the name of the server we are connecting to with -v
The logging level for these messages was decreaed so that they
do not show up in ipa-advise output.
Reset the log level to INFO and configure ipa-advise to not display
INFO messages from xmlclient by default.
Partially reverts commit efe5a96725
https://fedorahosted.org/freeipa/ticket/4135
Reviewed-By: Tomáš Babej <tbabej@redhat.com>
This commit is contained in:
@@ -22,6 +22,7 @@ from ipalib import api
|
||||
from ipalib.errors import ValidationError
|
||||
from ipapython import admintool
|
||||
from textwrap import wrap
|
||||
from ipapython.ipa_log_manager import log_mgr
|
||||
|
||||
|
||||
"""
|
||||
@@ -173,6 +174,10 @@ class IpaAdvise(admintool.AdminTool):
|
||||
|
||||
api.bootstrap(in_server=False, context='advise')
|
||||
api.finalize()
|
||||
if not self.options.verbose:
|
||||
# Do not print connection information by default
|
||||
logger_name = r'ipa\.ipalib\.plugins\.rpcclient'
|
||||
log_mgr.configure(dict(logger_regexps=[(logger_name, 'warning')]))
|
||||
|
||||
# With no argument, print the list out and exit
|
||||
if not self.args:
|
||||
|
||||
Reference in New Issue
Block a user