src/h5core/h5_errorhandling.c

src/include/h5core/h5_errorhandling.h
- h5_error(), h5_warn(), h5_info(): print message if debug-level > 3
This commit is contained in:
2015-09-08 20:48:26 +02:00
parent 47bee153ba
commit a618acf686
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -244,7 +244,6 @@ h5_verror (
const char* fmt,
va_list ap
) {
if ((h5_debug_level & 0x3) < 1) return;
if (h5_debug_level == 0) return;
h5priv_vprintf (stderr, "E", h5_call_stack.entry[0].name, fmt, ap);
}