Pequena LIB para fazer um LOGGER

Dependents:   monitoramento_ativos

Revision:
0:1019a5a78757
Child:
1:f23ad1b9a35a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Logger.h	Thu May 02 23:51:34 2019 +0000
@@ -0,0 +1,13 @@
+#ifndef MBED_LOGGER_H
+#define MBED_LOGGER_H
+
+#include <string>
+using namespace std;
+
+class Logger {
+ 
+ public:
+    static void log(string text);
+}
+;
+#endif