Blame SOURCES/patch-cassandane-no-syslog

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