Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: LoggerInterface.h
- Revision:
- 4:96f938f3d98a
- Parent:
- 1:8ee5fd3c1bf1
- Child:
- 6:015483427bd3
--- a/LoggerInterface.h Thu Nov 24 14:25:31 2016 +0000
+++ b/LoggerInterface.h Sun Apr 02 13:02:48 2017 +0200
@@ -1,12 +1,13 @@
+#pragma once
namespace Log{
class LoggerInterface
{
public:
-
+
enum Level {EMERGENCY, ALERT, CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG};
-
+
/**
* System is unusable.
*
@@ -83,4 +84,4 @@
virtual void log(Level level, char* message, ...) = 0;
};
-}
\ No newline at end of file
+}