Skip to content

Commit 22b4b66

Browse files
committed
added logger so external functions can use
1 parent 942d062 commit 22b4b66

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/emsesp_stub.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,21 @@
1818
#ifndef EMSESP_EMSESP_STUB_H
1919
#define EMSESP_EMSESP_STUB_H
2020

21-
// forward declarator
22-
// used to bind EMS-ESP functions to external frameworks
2321
#include "system.h"
2422
#include "mqtt.h"
2523
#include "dallassensor.h"
2624
#include "version.h"
2725

26+
// forward declarators
27+
// used to bind EMS-ESP functions to external frameworks
2828
namespace emsesp {
2929
class EMSESP {
3030
public:
3131
static Mqtt mqtt_;
3232
static System system_;
3333
static DallasSensor dallassensor_;
34+
35+
static uuid::log::Logger logger();
3436
};
3537

3638
} // namespace emsesp

0 commit comments

Comments
 (0)