fixing missing function

This commit is contained in:
Peter Buchegger 2022-03-20 01:03:42 +01:00
parent 4aa8a3197d
commit 006b29d177
2 changed files with 5 additions and 0 deletions

View file

@ -38,3 +38,7 @@ bool System::isWifiEthConnected() const {
void System::connectedViaWifiEth(bool status) {
_isWifiEthConnected = status;
}
logging::Logger &System::getLogger() {
return _logger;
}