diff --git a/lib/System/System.h b/lib/System/System.h index 376741b..6c7e9d4 100644 --- a/lib/System/System.h +++ b/lib/System/System.h @@ -1,6 +1,7 @@ #ifndef SYSTEM_H_ #define SYSTEM_H_ +#include #include #include "TaskManager.h" @@ -22,6 +23,7 @@ public: Display & getDisplay(); bool isWifiEthConnected() const; void connectedViaWifiEth(bool status); + logging::Logger & getLogger(); private: BoardConfig const * _boardConfig; @@ -29,6 +31,7 @@ private: TaskManager _taskManager; Display _display; bool _isWifiEthConnected; + logging::Logger _logger; }; #endif