From 4728b41e8b9ff4808b8f5689c7815e82da45414b Mon Sep 17 00:00:00 2001 From: gabi Date: Mon, 3 Nov 2014 09:00:28 +0200 Subject: [PATCH] Updated readme and example.cpp --- README.md | 23 ++++++++++++----------- example/example.cpp | 6 +++--- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 02767284..97137650 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,20 @@ Just copy the files to your build tree and use a C++11 compiler * visual studio 2013 ##Features -* Very low overhead -* Stream like, easy to use interface -* Logging levels +* Very fast - performance is the primary goal +* Headers only +* No dependencies +* Cross platform - Linux / Windows on 32/64 bits +* Mult/Single threaded loggers * Rotating log files * Daily log files -* Async logging -* Thread safety -* Custom formatting +* Console logging +* Async logging* +* Logging levels +* Custom formatting with user defined patterns - -## Performance -The library is very fast. -Here are some benchmarks (Ubuntu, Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz) +## Benchmarks +Here are some benchmarks (Ubuntu 64 bits, Intel i7-4770 CPU @ 3.40GHz) ``` ******************************************************************************* Single thread, 250,000 iterations, flush every 1000 lines @@ -52,7 +53,7 @@ int main(int, char* []) try { std::string filename = "spdlog_example"; - auto console = spd::stderr_logger_mt("console"); + auto console = spd::stdout_logger_mt("console"); console->info("Welcome to spdlog!") ; console->info() << "Creating file " << filename << ".."; diff --git a/example/example.cpp b/example/example.cpp index 1800d761..12dfe81c 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -44,8 +44,8 @@ int main(int, char* []) //Create console, multithreaded logger auto console = spd::stdout_logger_mt("console"); console->info("Welcome to spdlog!") ; - console->info("Varriadic template call are supproted", "...", 1, 2, 3.5); - console->info() << "streams are supported too " << std::setw(5) << std::setfill('0') << 1; + console->info("An info message example", "...", 1, 2, 3.5); + console->info() << "Streams are supported too " << std::setw(5) << std::setfill('0') << 1; //Create a file rotating logger with 5mb size max and 3 rotated files auto file_logger = spd::rotating_logger_mt("file_logger", filename, 1024 * 1024 * 5, 3); @@ -53,7 +53,7 @@ int main(int, char* []) for (int i = 0; i < 100; ++i) { - file_logger->info(i, "in hex is", "0x") << std::hex << std::uppercase << i; + file_logger->info(i, "in hex is", "0x") << std::hex << std::uppercase << i; } spd::set_pattern("*** [%H:%M:%S %z] [thread %t] %v ***");