Happy new year
[pazpar2-moved-to-github.git] / src / ppmutex.c
index fa187b2..1ecc026 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Pazpar2.
-   Copyright (C) 2006-2010 Index Data
+   Copyright (C) Index Data
 
 Pazpar2 is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -26,22 +26,21 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #endif
 
 #include <assert.h>
-
+#include <yaz/log.h>
 #include "ppmutex.h"
 
-static int pazpar2_mutex_debug = 0;
+static int ppmutex_level = 0;
 
-void pazpar2_mutex_enable_debug(int debug)
+void pazpar2_mutex_init(void)
 {
-    pazpar2_mutex_debug = debug;
+    ppmutex_level = yaz_log_module_level("mutex");
 }
 
 void pazpar2_mutex_create(YAZ_MUTEX *p, const char *name)
 {
     assert(p);
     yaz_mutex_create(p);
-    if (pazpar2_mutex_debug && name)
-        yaz_mutex_set_name(*p, name);
+    yaz_mutex_set_name(*p, ppmutex_level, name);
 }
 
 /*