From 35140352a63b8767cf5ea2332db49c52cb7e9910 Mon Sep 17 00:00:00 2001 From: "Jason C. Wenger" Date: Sat, 11 Jul 2020 22:23:35 -0500 Subject: [PATCH] Correct mistaken search/replace --- btservice/btservice.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/btservice/btservice.cpp b/btservice/btservice.cpp index 8fb059f..3eee52a 100644 --- a/btservice/btservice.cpp +++ b/btservice/btservice.cpp @@ -33,22 +33,22 @@ int main(int argc, char* argv[]) btservice::AndroidBluetoothServer androidBluetoothServer; if(!androidBluetoothServer.start(address, portNumber)) { - OPENAUTO_LOG(error) << "[src] Server start failed."; + OPENAUTO_LOG(error) << "[btservice] Server start failed."; return 2; } - OPENAUTO_LOG(info) << "[src] Listening for connections, address: " << address.toString().toStdString() + OPENAUTO_LOG(info) << "[btservice] Listening for connections, address: " << address.toString().toStdString() << ", port: " << portNumber; btservice::AndroidBluetoothService androidBluetoothService(portNumber); if(!androidBluetoothService.registerService(address)) { - OPENAUTO_LOG(error) << "[src] Service registration failed."; + OPENAUTO_LOG(error) << "[btservice] Service registration failed."; return 1; } else { - OPENAUTO_LOG(info) << "[src] Service registered, port: " << portNumber; + OPENAUTO_LOG(info) << "[btservice] Service registered, port: " << portNumber; } qApplication.exec();