From 418381623e4d664d712fda46fb469e64adc559d4 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 20:43:30 +0200 Subject: [PATCH 1/7] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c0970e24..cb6c0c4e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ Just copy the files to your build tree and use a C++11 compiler * Rotating log files * Daily log files * Console logging +* Linux syslog * Optional async logging +* Add your own custom logging targets easily (just implement the single function in the sink interface) * Logging levels * Custom formatting with user defined patterns From f8063b4c5794808a632c1ab91bcaf8811f89ffe5 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 21:00:01 +0200 Subject: [PATCH 2/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb6c0c4e..d21d7138 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Just copy the files to your build tree and use a C++11 compiler * Console logging * Linux syslog * Optional async logging -* Add your own custom logging targets easily (just implement the single function in the sink interface) +* Add custom log targets easily (just implement the single function in the [sink](include/spdlog/sinks/sink.h) interface) * Logging levels * Custom formatting with user defined patterns From 28c5134857fd0781cee8fac5f084c5d545f39cf5 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 21:01:25 +0200 Subject: [PATCH 3/7] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d21d7138..01265645 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Just copy the files to your build tree and use a C++11 compiler * Very fast - performance is the primary goal (see becnhmarks below) * Headers only * No dependencies +* Simple to use, simple to understand, simple to hack or extend * Cross platform - Linux / Windows on 32/64 bits * Multi/Single threaded loggers * Rotating log files @@ -24,7 +25,7 @@ Just copy the files to your build tree and use a C++11 compiler * Console logging * Linux syslog * Optional async logging -* Add custom log targets easily (just implement the single function in the [sink](include/spdlog/sinks/sink.h) interface) +* Add custom log targets easily (just implement a single function in the [sink](include/spdlog/sinks/sink.h) interface) * Logging levels * Custom formatting with user defined patterns From 7d30a72b9a363fbc63bacc0220210f90fe64c1ca Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 21:04:26 +0200 Subject: [PATCH 4/7] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 01265645..8a9be79e 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,6 @@ Just copy the files to your build tree and use a C++11 compiler * Very fast - performance is the primary goal (see becnhmarks below) * Headers only * No dependencies -* Simple to use, simple to understand, simple to hack or extend * Cross platform - Linux / Windows on 32/64 bits * Multi/Single threaded loggers * Rotating log files @@ -25,7 +24,7 @@ Just copy the files to your build tree and use a C++11 compiler * Console logging * Linux syslog * Optional async logging -* Add custom log targets easily (just implement a single function in the [sink](include/spdlog/sinks/sink.h) interface) +* Extend with custom log targets easily (just implement a single function in the [sink](include/spdlog/sinks/sink.h) interface) * Logging levels * Custom formatting with user defined patterns From ac5568db63555e05e132dfd1bcdab6f8dcbcbe05 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 21:07:01 +0200 Subject: [PATCH 5/7] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a9be79e..ebf74b08 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ Just copy the files to your build tree and use a C++11 compiler * Console logging * Linux syslog * Optional async logging +* Custom formatting +* Runtime logging levels * Extend with custom log targets easily (just implement a single function in the [sink](include/spdlog/sinks/sink.h) interface) -* Logging levels -* Custom formatting with user defined patterns + + ## Benchmarks From 1f4de31c4c5de1191580e61c3fe4bafe03549c79 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 22:55:13 +0200 Subject: [PATCH 6/7] Update file_helper.h Removed unneeded include --- include/spdlog/details/file_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/file_helper.h b/include/spdlog/details/file_helper.h index f6aa5a3e..c98e4390 100644 --- a/include/spdlog/details/file_helper.h +++ b/include/spdlog/details/file_helper.h @@ -32,7 +32,7 @@ #include #include #include -#include + #include "os.h" From d8396e1f838afa312532cbb5cdf247c44c9facf9 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 16 Nov 2014 22:56:29 +0200 Subject: [PATCH 7/7] Update file_helper.h --- include/spdlog/details/file_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/file_helper.h b/include/spdlog/details/file_helper.h index c98e4390..f6aa5a3e 100644 --- a/include/spdlog/details/file_helper.h +++ b/include/spdlog/details/file_helper.h @@ -32,7 +32,7 @@ #include #include #include - +#include #include "os.h"