From 2b6df8dfae682c31465648f2e3f1a548e69d773d Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 7 Dec 2014 20:19:33 +0200 Subject: [PATCH 1/5] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7db77140..aee13ad9 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,8 @@ Just copy the files to your build tree and use a C++11 compiler * No dependencies. * Cross platform - Linux / Windows on 32/64 bits. * **new!** Feature rich cppfromat [call style](http://cppformat.readthedocs.org/en/stable/syntax.html) using the excellent [cppformat](http://cppformat.github.io/) library. -* Example: ```logger.info("Hello {} {:08x}!!", "world", 42);``` -* ostream call style: ```logger.info() << "Hello << "logger";``` -* **new!** Extremely fast asynchronous mode (optional) - use of lockfree queues and other tricks to reach millions of calls per second from multiple threads. +* ostream call style. +* Extremely fast asynchronous mode (optional) - use of lockfree queues and other tricks to reach millions of calls per second from multiple threads. * [Custom](https://github.com/gabime/spdlog/wiki/Custom-formatting) formatting. * Multi/Single threaded loggers. * Various log targets: From 8aceca9e7c63fae0d768eb92c4931da13e54a361 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 7 Dec 2014 20:20:27 +0200 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aee13ad9..678f1110 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Just copy the files to your build tree and use a C++11 compiler * No dependencies. * Cross platform - Linux / Windows on 32/64 bits. * **new!** Feature rich cppfromat [call style](http://cppformat.readthedocs.org/en/stable/syntax.html) using the excellent [cppformat](http://cppformat.github.io/) library. -* ostream call style. +* Optional ostream call style. * Extremely fast asynchronous mode (optional) - use of lockfree queues and other tricks to reach millions of calls per second from multiple threads. * [Custom](https://github.com/gabime/spdlog/wiki/Custom-formatting) formatting. * Multi/Single threaded loggers. From 4ee43eb2098eeef236c3065c93148529de77a541 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 7 Dec 2014 20:21:43 +0200 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 678f1110..162655b8 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Just copy the files to your build tree and use a C++11 compiler * Headers only. * No dependencies. * Cross platform - Linux / Windows on 32/64 bits. -* **new!** Feature rich cppfromat [call style](http://cppformat.readthedocs.org/en/stable/syntax.html) using the excellent [cppformat](http://cppformat.github.io/) library. +* **new!** Feature rich cppfromat [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. * Optional ostream call style. * Extremely fast asynchronous mode (optional) - use of lockfree queues and other tricks to reach millions of calls per second from multiple threads. * [Custom](https://github.com/gabime/spdlog/wiki/Custom-formatting) formatting. From 12169033c36e7b2de2f4db0d949a2f4f28bf677f Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 7 Dec 2014 20:26:42 +0200 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 162655b8..a44fc047 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Just copy the files to your build tree and use a C++11 compiler * Headers only. * No dependencies. * Cross platform - Linux / Windows on 32/64 bits. -* **new!** Feature rich cppfromat [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. +* **new!** Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. * Optional ostream call style. * Extremely fast asynchronous mode (optional) - use of lockfree queues and other tricks to reach millions of calls per second from multiple threads. * [Custom](https://github.com/gabime/spdlog/wiki/Custom-formatting) formatting. From eb325333337aeff4144c274400a983219865d2f9 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 7 Dec 2014 20:27:21 +0200 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a44fc047..f2238866 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Just copy the files to your build tree and use a C++11 compiler ##Features * Very fast - performance is the primary goal (see [becnhmarks](#benchmarks) below). * Headers only. -* No dependencies. +* No dependencies - just copy and use. * Cross platform - Linux / Windows on 32/64 bits. * **new!** Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. * Optional ostream call style.