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>2019-08-19 11:31:33 +0300
committergabime <gmelman1@gmail.com>2019-08-19 11:31:33 +0300
commit0335e3fcc0b09c597743da1fa9664603b94c370d (patch)
tree9291f86e94f4f47d0809bfea59b71f7847074afe /example
parentb0a25f018339daf6972291d4dc76cf7f4a26aadb (diff)
Print error and abort instead of throw if SPDLOG_NO_EXEPTIONS is defined
Diffstat (limited to '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 ce57fc9d..b2ee6d08 100644
--- a/example/example.cpp
+++ b/example/example.cpp
@@ -23,7 +23,7 @@ void clone_example();
int main(int, char *[])
{
- spdlog::info("Welcome to spdlog version {}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
+ spdlog::info("Welcome to spdlog version {}{}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
spdlog::warn("Easy padding in numbers like {:08d}", 12);
spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);
spdlog::info("Support for floats {:03.2f}", 1.23456);
@@ -89,7 +89,7 @@ void stdout_logger_example()
void basic_example()
{
// Create basic file logger (not rotated).
- auto my_logger = spdlog::basic_logger_mt("file_logger", "logs/basic-log.txt");
+ auto my_logger = spdlog::basic_logger_mt("file_logger", "lodgs/basic-log.txt");
}
#include "spdlog/sinks/rotating_file_sink.h"