diff --git a/src/blackcore/vatsim/networkvatlib.cpp b/src/blackcore/vatsim/networkvatlib.cpp index 07626f2f3..53de030f7 100644 --- a/src/blackcore/vatsim/networkvatlib.cpp +++ b/src/blackcore/vatsim/networkvatlib.cpp @@ -1494,7 +1494,9 @@ namespace BlackCore case vatServerErrorRegistered: case vatServerErrorInvalidCtrl: CLogMessage(self).info("Server: ") << self->fromFSD(msg); break; - default: qFatal("vatlib: %s (error %d)", msg, error); emit self->terminate(); + // default: qFatal("vatlib: %s (error %d)", msg, error); emit self->terminate(); + // KB: Why the hard termination? + default: CLogMessage(self).error("vatlib: %1 (error %2)") << msg << error; emit self->terminate(); break; } }