[MOAB-dev] r3859 - MOAB/trunk/src/io
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Thu May 6 18:09:05 CDT 2010
Author: kraftche
Date: 2010-05-06 18:09:04 -0500 (Thu, 06 May 2010)
New Revision: 3859
Modified:
MOAB/trunk/src/io/ReadHDF5.cpp
Log:
make options for controlling debug output consistant between ReadHDF5 and WriteHDF5
Modified: MOAB/trunk/src/io/ReadHDF5.cpp
===================================================================
--- MOAB/trunk/src/io/ReadHDF5.cpp 2010-05-06 23:08:34 UTC (rev 3858)
+++ MOAB/trunk/src/io/ReadHDF5.cpp 2010-05-06 23:09:04 UTC (rev 3859)
@@ -166,7 +166,7 @@
// Set up debug output
int tmpval;
- if (MB_SUCCESS == opts.get_int_option("DEBUG_FORMAT", 1, tmpval)) {
+ if (MB_SUCCESS == opts.get_int_option("DEBUG_IO", 1, tmpval)) {
dbgOut.set_verbosity(tmpval);
dbgOut.set_prefix("H5M ");
}
@@ -174,7 +174,7 @@
// Enable some extra checks for reads. Note: amongst other things this
// will print errors if the entire file is not read, so if doing a
// partial read that is not a parallel read, this should be disabled.
- debugTrack = (MB_SUCCESS == opts.get_null_option("DEBUG_OVERLAPS"));
+ debugTrack = (MB_SUCCESS == opts.get_null_option("DEBUG_BINIO"));
// Handle parallel options
std::string junk;
More information about the moab-dev
mailing list