zoomtst3: print event name
[yaz-moved-to-github.git] / src / xmlerror.c
index 70bd639..26b5840 100644 (file)
@@ -1,6 +1,6 @@
-/*
- * Copyright (C) 1995-2008, Index Data ApS
- * All rights reserved.
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2010 Index Data
+ * See the file LICENSE for details.
  */
 
 /** \file
@@ -33,7 +33,7 @@ static void xml_error_handler(void *ctx, const char *fmt, ...)
     va_start(ap, fmt);
 
     yaz_vsnprintf(buf, sizeof(buf), fmt, ap);
-    yaz_log(YLOG_WARN, "%s: %s", prefix, buf);
+    yaz_log(xml_error_log_level, "%s: %s", prefix, buf);
 
     va_end (ap);
 }
@@ -46,17 +46,19 @@ void yaz_log_xml_errors(const char *prefix, int log_level)
 #if YAZ_HAVE_XML2
     xmlSetGenericErrorFunc((void *) (prefix ? prefix : "XML"),
                            xml_error_handler);
-#endif
 #if YAZ_HAVE_XSLT 
     xsltSetGenericErrorFunc((void *) (prefix ? prefix : "XSLT"),
                             xml_error_handler);
 #endif
+#endif
 }
 
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */
+