Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2018-04-09 15:12:51 +0300
committergabime <gmelman1@gmail.com>2018-04-09 15:12:51 +0300
commite9bb008f157bb767381e4e47fb318a49386e3af2 (patch)
treeb476616a090524f206f0d16f14cb0e135e683ee9
parentd352aa0990493e66cc659cfc023f8e2f5e35968f (diff)
Fixed example
-rw-r--r--example/example.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/example.cpp b/example/example.cpp
index 0597ec75..6144c065 100644
--- a/example/example.cpp
+++ b/example/example.cpp
@@ -59,8 +59,8 @@ int main(int, char *[])
// Customize msg format for all messages
spd::set_pattern("[%^+++%$] [%H:%M:%S %z] [thread %t] %v");
- console->info("This an info message with custom format (and custom color range between the '%^' and '%$')");
- console->error("This an error message with custom format (and custom color range between the '%^' and '%$')");
+ console->info("This an info message with custom format");
+ console->error("This an error message with custom format");
// Runtime log levels
spd::set_level(spd::level::info); // Set global log level to info