klayout_main: Don't abort on info messages

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2021-09-21 14:37:03 +01:00
parent 29384bf3f3
commit 93cf7869ce
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ void myMessageOutput(QtMsgType type, const QMessageLogContext & /*ctx*/, const Q
abort();
case QtInfoMsg:
fprintf(stderr, "Info: %s\n", msg.toLocal8Bit ().constData ());
abort();
break;
}
}
#else