Don't suppress error messages
This commit is contained in:
parent
c31a96454c
commit
1ab390d115
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ void PRINT_NOCACHE(const std::string &msg)
|
|||
else lastmessages.push_back(msg);
|
||||
}
|
||||
|
||||
if (!OpenSCAD::quiet) {
|
||||
if (!OpenSCAD::quiet || boost::starts_with(msg, "ERROR")) {
|
||||
if (!outputhandler) {
|
||||
fprintf(stderr, "%s\n", msg.c_str());
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue