Blame SOURCES/patch-cassandane-no-syslog

0f9cf8
diff --git a/Cassandane/Util/Log.pm b/Cassandane/Util/Log.pm
0f9cf8
index 9cd93d5..8d3b3c1 100644
0f9cf8
--- a/Cassandane/Util/Log.pm
0f9cf8
+++ b/Cassandane/Util/Log.pm
0f9cf8
@@ -52,16 +52,12 @@ our @EXPORT = qw(
0f9cf8
 
0f9cf8
 my $verbose = 0;
0f9cf8
 
0f9cf8
-openlog('cassandane', '', LOG_LOCAL6)
0f9cf8
-    or die "Cannot openlog";
0f9cf8
-
0f9cf8
 sub xlog
0f9cf8
 {
0f9cf8
     my ($pkg, $file, $line) = caller;
0f9cf8
     $pkg =~ s/^Cassandane:://;
0f9cf8
     my $msg = "=====> " . $pkg . "[" . $line . "] " . join(' ', @_);
0f9cf8
     print STDERR "$msg\n";
0f9cf8
-    syslog(LOG_ERR, "$msg");
0f9cf8
 }
0f9cf8
 
0f9cf8
 sub set_verbose