Browse Source

Output error by STORM_LOG_ERROR

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
87d078f897
  1. 2
      src/storm-cli-utilities/model-handling.h
  2. 2
      src/storm-pars-cli/storm-pars.cpp

2
src/storm-cli-utilities/model-handling.h

@ -579,7 +579,7 @@ namespace storm {
STORM_PRINT("Time for model checking: " << *watch << "." << std::endl);
}
} else {
STORM_PRINT(" failed, property is unsupported by selected engine/settings." << std::endl);
STORM_LOG_ERROR("Property is unsupported by selected engine/settings." << std::endl);
}
}

2
src/storm-pars-cli/storm-pars.cpp

@ -257,7 +257,7 @@ namespace storm {
STORM_PRINT_AND_LOG("Time for model checking: " << *watch << "." << std::endl << std::endl);
}
} else {
STORM_PRINT_AND_LOG(" failed, property is unsupported by selected engine/settings." << std::endl);
STORM_LOG_ERROR("Property is unsupported by selected engine/settings." << std::endl);
}
}

Loading…
Cancel
Save