Simple multipurpose logger
Fork of LogIt by
Diff: README.md
- Revision:
- 7:eb101b1726a5
- Parent:
- 5:e16468c1160f
diff -r 17bc740828b8 -r eb101b1726a5 README.md --- a/README.md Thu Dec 15 19:29:05 2016 +0100 +++ b/README.md Wed May 03 14:16:40 2017 +0000 @@ -1,4 +1,4 @@ -# Mbed LogIt +# Mbed LogItNow Logger library that is build based on the LoggerInterface library that follows the PSR-3 logger standard. @@ -6,18 +6,18 @@ This library provides an abstract class logable to make your classes easily Logger aware. -Besides that the LogIt library also has a SerialLogger implementation and a NullLogger +Besides that the LogItNow library also has a SerialLogger implementation and a NullLogger for production applications where no logging should be done. NullLogger is used as a default when making your classes Logger aware. It is implemented using the Singleton pattern to avoid waste of resources. -## Using LogIt +## Using LogItNow First make your class inherit from Logable as such ```C++ -class Router : public LogIt::Logable { +class Router : public LogItNow::Logable { //... }; ```