Skip to content
Snippets Groups Projects
Commit d061f44c authored by Podhorszki, Norbert's avatar Podhorszki, Norbert
Browse files

Set debugMode to true by default.

parent d6e8c8dc
No related branches found
No related tags found
1 merge request!221Set debugMode to true by default.
......@@ -45,7 +45,7 @@ public:
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const std::string configFile, MPI_Comm mpiComm,
const bool debugMode = false);
const bool debugMode = true);
/**
* @brief Constructor for non-MPI applications WITH a XML config file
......@@ -53,20 +53,20 @@ public:
* future?)
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const std::string configFile, const bool debugMode = false);
ADIOS(const std::string configFile, const bool debugMode = true);
/**
* @brief Constructor for MPI apps WITHOUT a XML config file
* @param mpiComm MPI communicator from application
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(MPI_Comm mpiComm, const bool debugMode = false);
ADIOS(MPI_Comm mpiComm, const bool debugMode = true);
/**
* @brief ADIOS no-MPI default empty constructor
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const bool debugMode = false);
ADIOS(const bool debugMode = true);
/**
* Delete copy constructor explicitly. Objects shouldn't be allowed to be
......@@ -103,7 +103,7 @@ private:
const std::string m_ConfigFile;
/** if true will do more checks, exceptions, warnings, expect slower code */
const bool m_DebugMode = false;
const bool m_DebugMode = true;
/** transforms associated with ADIOS run */
std::map<std::string, std::shared_ptr<Transform>> m_Transforms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment