- 16 Nov, 2014 2 commits
-
-
Gabi Melman authored
-
Gabi Melman authored
-
- 15 Nov, 2014 1 commit
-
-
gabime authored
-
- 13 Nov, 2014 2 commits
-
-
Gabi Melman authored
Add mingw build and run script for bench example. Thanks @mintyc
-
Paul authored
-
- 12 Nov, 2014 3 commits
-
-
Gabi Melman authored
Check return code from std::remove.
-
Arnaud Kapp authored
In case removing a file (file_sink) fails, we throw spdlog_ex.
-
gabi authored
-
- 11 Nov, 2014 3 commits
-
-
Gabi Melman authored
Removed un needed includes
-
Gabi Melman authored
Add a syslog() based sink for Linux.
-
Arnaud Kapp authored
This commit introduce a new sink: syslog_sink. This sink is Linux only, and will write log entries to the system logger, using the syslog() library call. It is instanciable using spdlog::syslog_logger(name). Note that the suffix _st or _mt is not present, as syslog() is thread-safe. I also applied @gabime reviews and added license header.
-
- 10 Nov, 2014 2 commits
-
-
Gabi Melman authored
Add NOTICE, ALERT and EMERG log level - so spdlog log levels could be matched to syslog's
-
xaqq authored
This commit introduces 3 new log level. Thoses are: + NOTICE, which is a bit worse that INFO, but still not a warn. + ALERT, for case worse that critical. + EMERG, application is unusable. With those 3 log levels, spdlog now has all log level accepted by the syslog() system call.
-
- 08 Nov, 2014 1 commit
-
-
Gabi Melman authored
-
- 07 Nov, 2014 13 commits
-
-
gabime authored
-
gabime authored
-
gabime authored
-
gabi authored
-
gabime authored
-
https://github.com/gabime/spdloggabi authored
-
gabi authored
-
gabi authored
async_sink: catch back thread exceptions and rethrow on the calling thread on the next logging request
-
gabi authored
-
Gabi Melman authored
use std::abs from cstdlib which fixes a warning that occurs when compiling with clang 3.5 on 64-bit linux
-
Andre Haupt authored
use std::abs from cstdlib which fixes a warning that occurs when compiling with clang 3.5 on 64-bit linux in file included from ../include/spdlog/sinks/../formatter.h:57: ../include/spdlog/details/pattern_formatter_impl.h:308:26: warning: absolute value function 'abs' given an argument of type 'rep' (aka 'long') but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value] auto secs_diff = abs((duration_cast<seconds>(diff)).count()); ^ ../include/spdlog/details/pattern_formatter_impl.h:308:26: note: use function 'std::abs' instead auto secs_diff = abs((duration_cast<seconds>(diff)).count()); ^~~ std::abs 1 warning generated.
-
https://github.com/gabime/spdloggabi authored
-
gabi authored
-
- 06 Nov, 2014 1 commit
-
-
Gabi Melman authored
-
- 05 Nov, 2014 9 commits
- 04 Nov, 2014 3 commits
-
-
gabi authored
-
Gabi Melman authored
-
https://github.com/gabime/spdloggabime authored
-