[interchange-cvs] interchange - racke modified lib/Vend/SOAP.pm

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Fri Mar 7 16:43:47 2003


User:      racke
Date:      2003-03-07 13:49:50 GMT
Modified:  lib/Vend SOAP.pm
Log:
log errors in soap tag to catalog

Revision  Changes    Path
2.4       +3 -3      interchange/lib/Vend/SOAP.pm


rev 2.4, prev_rev 2.3
Index: SOAP.pm
===================================================================
RCS file: /var/cvs/interchange/lib/Vend/SOAP.pm,v
retrieving revision 2.3
retrieving revision 2.4
diff -u -r2.3 -r2.4
--- SOAP.pm	18 Nov 2002 16:55:15 -0000	2.3
+++ SOAP.pm	7 Mar 2003 13:49:50 -0000	2.4
@@ -1,6 +1,6 @@
 # Vend::SOAP - Handle SOAP connections for Interchange
 #
-# $Id: SOAP.pm,v 2.3 2002/11/18 16:55:15 mheins Exp $
+# $Id: SOAP.pm,v 2.4 2003/03/07 13:49:50 racke Exp $
 #
 # Copyright (C) 1996-2002 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -34,7 +34,7 @@
 use strict;
 
 use vars qw($VERSION @ISA $AUTOLOAD);
-$VERSION = substr(q$Revision: 2.3 $, 10);
+$VERSION = substr(q$Revision: 2.4 $, 10);
 @ISA = qw/SOAP::Server/;
 
 my %Allowed_tags;
@@ -151,7 +151,7 @@
 		}
 	};
 	if($@) {
-		::logGlobal("error on SOAP call: %s", $@);
+		::logError("error on SOAP call: %s", $@);
 	}
 #::logDebug("after method call, uri=$uri proxy=$proxy call=$method result=$result");