mirror of https://github.com/KLayout/klayout.git
klayout_main: Don't abort on info messages
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
29384bf3f3
commit
93cf7869ce
|
|
@ -171,7 +171,7 @@ void myMessageOutput(QtMsgType type, const QMessageLogContext & /*ctx*/, const Q
|
||||||
abort();
|
abort();
|
||||||
case QtInfoMsg:
|
case QtInfoMsg:
|
||||||
fprintf(stderr, "Info: %s\n", msg.toLocal8Bit ().constData ());
|
fprintf(stderr, "Info: %s\n", msg.toLocal8Bit ().constData ());
|
||||||
abort();
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue