Index: sources/view/settings/VBluetooth.cpp =================================================================== diff -u -re4a0e2fc4c7ae0cbce0d670772276bf7f5ff3845 -raa8f2c87c14c68d1fda6da2540d47144990a596c --- sources/view/settings/VBluetooth.cpp (.../VBluetooth.cpp) (revision e4a0e2fc4c7ae0cbce0d670772276bf7f5ff3845) +++ sources/view/settings/VBluetooth.cpp (.../VBluetooth.cpp) (revision aa8f2c87c14c68d1fda6da2540d47144990a596c) @@ -32,8 +32,8 @@ */ void View::VBluetooth::initConnections() { - connect(&_BluetoothInterface, &BluetoothInterface::didStateChange, - this , &VBluetooth::onStateChange ); + connect(&_BluetoothInterface, SIGNAL(didStateChange (BluetoothData )), + this , SLOT( onStateChange (Model::MBluetooth ))); } void View::VBluetooth::onStateChange(const Model::MBluetooth &vData) @@ -146,12 +146,14 @@ notification(message); // Console Log - message = _deviceAddr + " " + message + " " + _detailName + " " + _detailValue; - message = message.trimmed().simplified(); - qDebug().noquote().nospace() << message; + // DEBUG: message = _deviceAddr + " " + message + " " + _detailName + " " + _detailValue; + // message = message.trimmed().simplified(); + // qDebug().noquote().nospace() << message; // Service Log - LOG_DEBUG(message); + if ( vState != MBluetooth::eIS_Device_Start ) { // this is the "Device Connecting ..." state and has the interval of 1s and will fill up the service log fast, so removed from log. + LOG_DEBUG(message); + } } void View::VBluetooth::doScan () { _BluetoothInterface.doScan (); }