summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/WebService/Server/XMLRPC.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm
index 56b31ffef..de9a5a97b 100644
--- a/Bugzilla/WebService/Server/XMLRPC.pm
+++ b/Bugzilla/WebService/Server/XMLRPC.pm
@@ -47,6 +47,13 @@ BEGIN {
};
}
+sub new {
+ my $class = shift;
+ my $self = $class->SUPER::new(@_);
+ $self->{debug_logger} = sub {};
+ return $self;
+}
+
sub initialize {
my $self = shift;
my %retval = $self->SUPER::initialize(@_);