Fix XPlane driver log message

This commit is contained in:
Roland Winklmeier
2015-12-15 13:03:21 +01:00
committed by Klaus Basan
parent 51efdca8cc
commit 7779c65ab8

View File

@@ -527,7 +527,7 @@ namespace BlackSimPlugin
}
else
{
CLogMessage(this).debug() << "Starting XBus on %1" << m_xbusServerSetting.get();
CLogMessage(this).debug() << "Starting XBus on" << m_xbusServerSetting.get();
m_conn = CSimulatorXPlane::connectionFromString(m_xbusServerSetting.get());
m_watcher = new QDBusServiceWatcher(xbusServiceName(), m_conn, QDBusServiceWatcher::WatchForRegistration, this);
connect(m_watcher, &QDBusServiceWatcher::serviceRegistered, this, &CSimulatorXPlaneListener::ps_serviceRegistered);