From 78078c322e0f68a9538f102b167236ff37c7408e Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 2 May 2013 14:12:43 +0000 Subject: [PATCH] definitions for H5_VERBOSE_{NONE,ERROR,WARN,INFO} added --- src/include/h5core/h5_debug.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/include/h5core/h5_debug.h b/src/include/h5core/h5_debug.h index f4cf82a..21b3ce2 100644 --- a/src/include/h5core/h5_debug.h +++ b/src/include/h5core/h5_debug.h @@ -17,6 +17,11 @@ extern "C" { #endif +#define H5_VERBOSE_NONE (0) +#define H5_VERBOSE_ERROR (1) +#define H5_VERBOSE_WARN (2) +#define H5_VERBOSE_INFO (3) + #define H5_DEBUG_USER (1<<2) #define H5_DEBUG_API (1<<3) #define H5_DEBUG_CORE_API (1<<4)