The branch, master has been updated via 4734598e08e05ec3754f57976e07d9d7f08c56eb (commit) from 984be7f0dc712e298ddc80b85d4965a9f17cf2a6 (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 4734598e08e05ec3754f57976e07d9d7f08c56eb Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Sep 17 10:49:44 2012 +0200 fix function name in X2Go::Log ----------------------------------------------------------------------- Summary of changes: X2Go/Log.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/X2Go/Log.pm b/X2Go/Log.pm index 0312b46..d62c556 100644 --- a/X2Go/Log.pm +++ b/X2Go/Log.pm @@ -37,14 +37,14 @@ use Config::Simple; use Sys::Syslog qw( :standard :macros ); use base 'Exporter'; -our @EXPORT = ( 'x2gologlevel' ); +our @EXPORT = ( 'loglevel' ); my $Config = new Config::Simple(syntax=>'ini'); $Config->read('/etc/x2go/x2goserver.conf' ); my $strloglevel = $Config->param("log.loglevel"); -sub x2gologlevel { +sub loglevel { my $loglevel = LOG_NOTICE; if ( $strloglevel eq "emerg" ) { $loglevel = LOG_EMERG; } elsif ( $strloglevel eq "alert" ) { $loglevel = LOG_ALERT; } hooks/post-receive -- x2goserver.git (X2Go Server) 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 "x2goserver.git" (X2Go Server).