From 9c1516859ae324bd2eb2e5e29c3313b774344306 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:35:39 +0300 Subject: [PATCH 1/8] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1a47f299..e14a5160 100644 --- a/README.md +++ b/README.md @@ -157,3 +157,7 @@ void custom_class_example() ## Tweaking spdlog can be [tweaked](include/spdlog/tweakme.h) to improve performance even more. + +## Documentation +Can be found in the [wiki](wiki) pages. + From 0e75381b18a398691601a092cc073a811ed5843f Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:36:44 +0300 Subject: [PATCH 2/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e14a5160..2d01832e 100644 --- a/README.md +++ b/README.md @@ -159,5 +159,5 @@ void custom_class_example() spdlog can be [tweaked](include/spdlog/tweakme.h) to improve performance even more. ## Documentation -Can be found in the [wiki](wiki) pages. +Can be found in the [wiki](https://github.com/gabime/spdlog/wiki) pages. From 7ec1c2ea5413d062538f282953b0c64bc43662cd Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:40:51 +0300 Subject: [PATCH 3/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d01832e..fe881d60 100644 --- a/README.md +++ b/README.md @@ -159,5 +159,5 @@ void custom_class_example() spdlog can be [tweaked](include/spdlog/tweakme.h) to improve performance even more. ## Documentation -Can be found in the [wiki](https://github.com/gabime/spdlog/wiki) pages. +Documentation can be found in the [wiki](https://github.com/gabime/spdlog/wiki/1.-QuickStart) pages. From 1a8f7ccf51fa39847df7bd9a771e87a38f15576d Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:46:05 +0300 Subject: [PATCH 4/8] Update README.md --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fe881d60..aebce7fe 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,21 @@ Very fast, header only, C++ logging library. ## Install Just copy the files to your build tree and use a C++11 compiler -## Tested on: +## Supported Platforms + * Linux (32/64 bits) + * Windows (32/64 bits) + * MAC OSX + +## Supported Compilers: * gcc 4.8.1 and above -* clang 3.5 (Linux and OSX) -* visual studio 2013 -* mingw with g++ 4.9.x +* clang 3.5 and above +* visual studio 2013 and above +* mingw with g++ 4.9.x and above ##Features * Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below). * Headers only. * 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. * ostream call style is supported too. * Extremely fast asynchronous mode (optional) - using lockfree queues and other tricks to reach millions of calls/sec. From fb6fa127620484246f5883868748e001bda9a1b5 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:49:20 +0300 Subject: [PATCH 5/8] Update README.md --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aebce7fe..c84eafa1 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,11 @@ Very fast, header only, C++ logging library. ## Install Just copy the files to your build tree and use a C++11 compiler -## Supported Platforms - * Linux (32/64 bits) - * Windows (32/64 bits) - * MAC OSX +## Platforms + * Linux (gcc 4.8.1+, clang 3.5+) + * Windows (visual studio 2013+, mingw with g++ 4.9.1+) + * MAC OSX (clang 3.5+) -## Supported Compilers: -* gcc 4.8.1 and above -* clang 3.5 and above -* visual studio 2013 and above -* mingw with g++ 4.9.x and above - ##Features * Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below). * Headers only. From b7fcc44108e6ad94a6a4933141a1bd36be383be3 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:50:36 +0300 Subject: [PATCH 6/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c84eafa1..0c1aa69e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Just copy the files to your build tree and use a C++11 compiler ## Platforms * Linux (gcc 4.8.1+, clang 3.5+) * Windows (visual studio 2013+, mingw with g++ 4.9.1+) - * MAC OSX (clang 3.5+) + * Mac OSX (clang 3.5+) ##Features * Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below). From 39b0bfa3eb82fdb4bc0ec4c7d3db7577eeb4ee01 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:51:50 +0300 Subject: [PATCH 7/8] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 0c1aa69e..3a59382a 100644 --- a/README.md +++ b/README.md @@ -153,9 +153,6 @@ void custom_class_example() } ``` -## Tweaking -spdlog can be [tweaked](include/spdlog/tweakme.h) to improve performance even more. - ## Documentation Documentation can be found in the [wiki](https://github.com/gabime/spdlog/wiki/1.-QuickStart) pages. From 23ec6336639923e68f3c4b513901990e12251fce Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 18:54:24 +0300 Subject: [PATCH 8/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a59382a..7db15533 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 * Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below). * Headers only. * No dependencies - just copy and use. -* **new!** Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. +* Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. * ostream call style is supported too. * Extremely fast asynchronous mode (optional) - using lockfree queues and other tricks to reach millions of calls/sec. * [Custom](https://github.com/gabime/spdlog/wiki/Custom-formatting) formatting.