Merge pull request #910 from gatecat/dont-abort-on-info

klayout_main: Don't abort on info messages
This commit is contained in:
Matthias Köfferlein 2021-09-21 22:43:46 +02:00 committed by GitHub
commit eb8c7ff53f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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