Don't log when there is no action.

This commit is contained in:
Matti Viljanen 2021-04-26 17:08:04 +03:00
parent e3d56ffd6f
commit 9079c10bd1
No known key found for this signature in database
GPG key ID: CF32A1495158F888

View file

@ -197,9 +197,6 @@ void Battery::showHighNotification() {
logD("Close high battery notification");
notification->close();
}
else {
logD("No high notification action");
}
}
void Battery::showLowNotification() {
@ -216,9 +213,6 @@ void Battery::showLowNotification() {
logD("Close low battery notification");
notification->close();
}
else {
logD("No low notification action");
}
}
int Battery::getCharge() { return charge; }