Commit 9258a8c3 by Maarten L. Hekkelman

Do not check validity of input file unless verbose is requested

parent 93e9a923
......@@ -142,7 +142,7 @@ int d_main(int argc, const char *argv[])
}
cif::file f = cif::pdb::read(in);
if (cif::VERBOSE >= 0 and not f.is_valid())
if (cif::VERBOSE > 0 and not f.is_valid())
std::cerr << "Warning, the input file is not valid. Run with --verbose to see why." << std::endl;
// --------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment