The branch, master has been updated via 12e0e180bbfe0a10924edbb950bb859f2c576757 (commit) from 50a8252b21cdca1ddfd64a6ff2f0991717de9cb7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 12e0e180bbfe0a10924edbb950bb859f2c576757 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Oct 2 14:19:15 2013 +0200 Raised verbosity level to INFO for session broker utilities. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 1 + sbin/x2gobroker-keygen | 4 +++- sbin/x2gobroker-pubkeyauthorizer | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index f999f4c..0a39a49 100644 --- a/debian/changelog +++ b/debian/changelog @@ -32,6 +32,7 @@ x2gobroker (0.0.3.0-0~x2go1) UNRELEASED; urgency=low reduces timeout duration if the host running the queried broker agent is down). - Catch RequestHandler errors and write them to the error log channel. + - Raised verbosity level to INFO for session broker utilities. * /debian/control: + Replace LDAP support with session brokerage support in LONG_DESCRIPTION. * /debian/x2gobroker-agent.dirs: diff --git a/sbin/x2gobroker-keygen b/sbin/x2gobroker-keygen index 6c1d723..93c93a6 100755 --- a/sbin/x2gobroker-keygen +++ b/sbin/x2gobroker-keygen @@ -57,8 +57,10 @@ if os.geteuid() == 0: logger_error.propagate = 1 # raise log level to DEBUG if requested... -if x2gobroker.defaults.X2GOBROKER_DEBUG and not x2gobroker.defaults.X2GOBROKER_TESTSUITE: +if x2gobroker.defaults.X2GOBROKER_DEBUG: logger_broker.setLevel(logging.DEBUG) +else: + logger_broker.setLevel(logging.INFO) logger_broker.info('X2Go Session Broker ({version}), written by {author}'.format(version=__VERSION__, author=__AUTHOR__)) logger_broker.info('Setting up the key generator\'s environment...') diff --git a/sbin/x2gobroker-pubkeyauthorizer b/sbin/x2gobroker-pubkeyauthorizer index 7596207..9588af0 100755 --- a/sbin/x2gobroker-pubkeyauthorizer +++ b/sbin/x2gobroker-pubkeyauthorizer @@ -80,6 +80,8 @@ logger_error.propagate = 0 # raise log level to DEBUG if requested... if X2GOBROKER_DEBUG: logger_broker.setLevel(logging.DEBUG) +else: + logger_broker.setLevel(logging.INFO) logger_broker.info('X2Go Session Broker ({version}), written by {author}'.format(version=__VERSION__, author=__AUTHOR__)) logger_broker.info('Setting up the »PubKey Authorizer«\'s environment...') hooks/post-receive -- x2gobroker.git (HTTP(S) Session broker for X2Go) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2gobroker.git" (HTTP(S) Session broker for X2Go).