Skip to content

Commit 4339756

Browse files
committed
bluetoothHandler: cosmetics
The info line was misleading (should be "has been" instead of "was"). The commit is fix this info message and also: - no newline at end of file
1 parent 8aea118 commit 4339756

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aa_wireless_dongle/package/aawg/src/bluetoothHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void BluetoothHandler::setPower(bool on) {
107107
}
108108

109109
m_adapter->powered->set_value(on);
110-
Logger::instance()->info("Bluetooth adapter was powered %s\n", on ? "on" : "off");
110+
Logger::instance()->info("Bluetooth adapter powered %s\n", on ? "on" : "off");
111111
}
112112

113113
void BluetoothHandler::setPairable(bool pairable) {
@@ -301,4 +301,4 @@ void BluetoothHandler::powerOff() {
301301
stopAdvertising();
302302
}
303303
setPower(false);
304-
}
304+
}

0 commit comments

Comments
 (0)