Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-09-23 | easylogging++: fix missing logs | moneromooo-monero | 1 | -3/+4 | |
2021-09-16 | cmake: set required C/C++ standard to 11 | selsta | 1 | -1/+4 | |
Co-authored-by: Jason Rhinelander <jason@imaginary.ca> | |||||
2021-08-03 | EasyLogging++: new anti-UB test and propagating exception | mj-xmr | 1 | -0/+1 | |
2021-06-11 | easylogging++: do not delete uninitialized objects | moneromooo-monero | 1 | -1/+0 | |
CID 1446562 | |||||
2021-05-14 | CMake: glob missing headers for easylogging | mj-xmr | 1 | -1/+5 | |
2021-04-27 | cmake: set 3.5 as minimum version | selsta | 1 | -1/+1 | |
2021-04-01 | Test: Enable coverage for external repositories | mj-xmr | 1 | -0/+1 | |
Add monero_enable_coverage() for reuse in case C/CXX_FLAGS are overwritten. | |||||
2021-03-29 | easylogging++: in place log sanitization | moneromooo-monero | 1 | -10/+14 | |
saves an object ctor/dtor per log | |||||
2021-02-16 | easylogging++: fix potential memory corruption | moneromooo-monero | 1 | -3/+2 | |
The m_typedConfigurations pointer is copied from one object to the next, but deleted in the dtor, leading to potential double free. It is also deleted first thing in the copy ctor, deleting uninitialized memory. This does not seem to actually happen in practice (those functions do not get called), but seems safer that way. Coverity 1446562 | |||||
2021-01-16 | Reduced executable size; reduced call sequence to "allowed" log function | Lee Clagett | 2 | -15/+32 | |
2020-07-30 | easylogging++: fix crash with reentrant logging | moneromooo-monero | 1 | -0/+11 | |
2020-07-19 | For NetBSD, add instructions to README.md and define to ea_config.h | thomasvaughan | 1 | -1/+1 | |
2020-05-24 | easylogging++: sanitize log payload | moneromooo-monero | 1 | -0/+96 | |
Some of it might be coming from untrusted sources Reported by itsunixiknowthis | |||||
2020-05-19 | easylogging++: sanitize log payload | moneromooo-monero | 1 | -0/+96 | |
Some of it might be coming from untrusted sources Reported by itsunixiknowthis | |||||
2020-03-11 | easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning | xiphon | 1 | -0/+2 | |
2019-12-02 | easylogging++: add emscripten support | moneromooo-monero | 1 | -2/+5 | |
This is upstream, but seems to have got lost in conflicts when merging support for BSDs or android. | |||||
2019-10-26 | easylogging++: add screen.xterm-256color to the "allow colour" TERM list | moneromooo-monero | 1 | -1/+1 | |
2019-10-24 | easylogging++: windows does not need terminal colour support | moneromooo-monero | 1 | -0/+2 | |
2019-10-08 | easylogging++: fix build with glibc | moneromooo-monero | 1 | -0/+2 | |
2019-09-24 | Revert "easylogging++: ensure it finds boost headers" | moneromooo-monero | 1 | -1/+0 | |
This reverts commit 9a95827ea72574c3e861aa3167c0b96b9bae64b3. | |||||
2019-09-24 | easylogging++: split strings manually | moneromooo-monero | 1 | -2/+13 | |
Avoids cmake skullduggery | |||||
2019-09-24 | easylogging++: ensure it finds boost headers | moneromooo-monero | 1 | -0/+1 | |
2019-09-24 | easylogging++: always omit ANSI codes when colour is not supported | moneromooo-monero | 2 | -3/+9 | |
2019-09-23 | Disable easylogging crash log on non-glibc libraries | Martijn Otto | 1 | -1/+1 | |
- easylogging assumes certain non-standard headers and functions - these function only exist in glibc - compiling under linux without glibc thus broke compilation | |||||
2019-09-16 | Properly format multiline logs | moneromooo-monero | 2 | -40/+138 | |
As a side effect, colouring on Windows should now work regardless of version | |||||
2019-08-19 | easylogging++: weed out most calls to allowed without locking | moneromooo-monero | 2 | -15/+26 | |
2019-04-14 | easylogging++: minimal stdout logging format | moneromooo-monero | 2 | -5/+22 | |
It's a bit of a hack, but doing it right would need a lot of changes to the easylogging++ source. | |||||
2019-04-10 | Fix linker issues using easylogging | Martijn Otto | 1 | -1/+3 | |
2019-04-07 | easylogging++: update to v9.96.7 | moneromooo-monero | 2 | -15/+21 | |
2019-03-05 | Update 2019 copyright | binaryFate | 1 | -1/+1 | |
2018-12-07 | easylogging++: check allowed categories before logging | moneromooo-monero | 2 | -0/+21 | |
2018-12-03 | easylogging++: avoid uneeded temporary std::string object | moneromooo-monero | 2 | -9/+8 | |
2018-11-30 | easylogging++: ensure logger is initialized before main | moneromooo-monero | 1 | -0/+1 | |
2018-11-27 | easylogging++: faster access to logging | moneromooo-monero | 2 | -2/+10 | |
Turns out getting the global shared_ptr hits the profile, and passing it around still keeps it at close to ~1% CPU, which is too much for mostly silent logging. Leak the object instead, which is even safer for late logging. | |||||
2018-11-27 | Revert "easylogging++: make the logger handle early/late logging" | moneromooo-monero | 2 | -17/+4 | |
This reverts commit 7f8bdeb35c73c70b2b65e30aa2a1cb93696355b3. | |||||
2018-11-06 | easylogging++: update to latest upstream (v9.96.5) | moneromooo-monero | 3 | -240/+349 | |
2018-10-23 | easylogging++: remove std::deque usage | moneromooo-monero | 2 | -3/+8 | |
It's not actually needed for this use, and saves a STL header | |||||
2018-09-29 | Merge pull request #4459 | Riccardo Spagni | 1 | -2/+2 | |
bcf3f6af fuzz_tests: catch unhandled exceptions (moneromooo-monero) 3ebd05d4 miner: restore stream flags after changing them (moneromooo-monero) a093092e levin_protocol_handler_async: do not propagate exception through dtor (moneromooo-monero) 1eebb82b net_helper: do not propagate exceptions through dtor (moneromooo-monero) fb6a3630 miner: do not propagate exceptions through dtor (moneromooo-monero) 2e2139ff epee: do not propagate exception through dtor (moneromooo-monero) 0749a8bd db_lmdb: do not propagate exceptions in dtor (moneromooo-monero) 1b0afeeb wallet_rpc_server: exit cleanly on unhandled exceptions (moneromooo-monero) 418a9936 unit_tests: catch unhandled exceptions (moneromooo-monero) ea7f9543 threadpool: do not propagate exceptions through the dtor (moneromooo-monero) 6e855422 gen_multisig: nice exit on unhandled exception (moneromooo-monero) 53df2deb db_lmdb: catch error in mdb_stat calls during migration (moneromooo-monero) e67016dd blockchain_blackball: catch failure to commit db transaction (moneromooo-monero) 661439f4 mlog: don't remove old logs if we failed to rename the current file (moneromooo-monero) 5fdcda50 easylogging++: test for NULL before dereference (moneromooo-monero) 7ece1550 performance_test: fix bad last argument calling add_arg (moneromooo-monero) a085da32 unit_tests: add check for page size > 0 before dividing (moneromooo-monero) d8b1ec8b unit_tests: use std::shared_ptr to shut coverity up about leaks (moneromooo-monero) 02563bf4 simplewallet: top level exception catcher to print nicer messages (moneromooo-monero) c57a65b2 blockchain_blackball: fix shift range for 32 bit archs (moneromooo-monero) | |||||
2018-09-11 | NetBSD support | thomasvaughan | 1 | -2/+7 | |
2018-07-15 | easylogging++: make the logger handle early/late logging | moneromooo-monero | 2 | -4/+17 | |
2018-04-25 | easylogging++: cached allowed categories | moneromooo-monero | 2 | -1/+12 | |
It turns out this can be fairly heavy when logging a lot | |||||
2018-02-01 | call _exit instead of abort in release mode | moneromooo-monero | 1 | -0/+6 | |
Avoids cores being created, as they're nowadays often piped to some call home system | |||||
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2018-01-04 | easylogging++: do not use crash log code on android, etc | moneromooo-monero | 1 | -0/+2 | |
2017-12-31 | Add misc hardening flags to the cmake machinery | moneromooo-monero | 1 | -0/+1 | |
See https://wiki.debian.org/Hardening#User_Space | |||||
2017-12-26 | only include the easylogging++ stack trace code when needed | moneromooo-monero | 1 | -4/+4 | |
2017-12-26 | easlogging++: omit some unneded macros | moneromooo-monero | 1 | -0/+1 | |
2017-12-23 | Fix Windows build | dEBRUYNE-1 | 1 | -0/+1 | |
Fix no new line | |||||
2017-12-18 | easylogging++: avoid buffer underflow | moneromooo-monero | 1 | -2/+3 | |
2017-12-09 | easylogging: show the 'no stack trace' warning only once | ston1th | 2 | -5/+7 | |
If execinfo.h is not available, output the stack trace warning only once, so we don't spam the build logs with it. | |||||
2017-11-12 | fixed easylogging compile issue on OpenBSD | Dyrcona | 1 | -2/+7 | |
Issue: #2575 Add ELPP_OS_OPENBSD macros to easylogging++.h so that it will build on OpenBSD. | |||||
2017-10-13 | cmake: fix shared library build | redfish | 1 | -1/+2 | |
2017-09-22 | easylogging++: add categories getter | moneromooo-monero | 2 | -1/+20 | |
2017-05-28 | easylogging++: log timestamps in GMT for privacy | moneromooo-monero | 1 | -3/+3 | |
2017-05-06 | GUI: easylogging++ install target | Jaquee | 1 | -0/+11 | |
2017-04-23 | Silence clang++ warnings | Howard Chu | 1 | -1/+5 | |
Using defined(foo) in a macro expansion is undefined. | |||||
2017-04-22 | easylogging++: default to creating categories by default | moneromooo-monero | 1 | -0/+1 | |
This avoids error spews from easylogging++ when we try to log something before easylogging is initialized, which can happen when errors happen at command line parsing time | |||||
2017-04-12 | Easylogging: remove invalid static in function member definition | MoroccanMalinois | 1 | -1/+1 | |
2017-04-12 | Easylogging: ELPP_STACKTRACE_ON_CRASH moved to ELPP_FEATURE_CRASH_LOG | MoroccanMalinois | 1 | -2/+1 | |
2017-04-10 | Fixup choice of easylogging++ vs libunwind stack trace code | moneromooo-monero | 1 | -0/+1 | |
2017-04-10 | easylogging++: do not disable DEBUG level based on _DEBUG/NDEBUG | moneromooo-monero | 1 | -2/+2 | |
2017-04-10 | easylogging++: detect DragonFly BSD as a UNIX | moneromooo-monero | 1 | -1/+6 | |
2017-04-10 | easylogging++: fix logging with static const header only data members | moneromooo-monero | 1 | -1/+13 | |
2017-04-10 | easylogging++: allow clipping a common filename prefix | moneromooo-monero | 2 | -4/+30 | |
2017-04-10 | easylogging++: add file-only logs | moneromooo-monero | 2 | -10/+12 | |
2017-04-10 | eayslogging++: Fix bad memory access before opening any files | moneromooo-monero | 1 | -0/+1 | |
2017-04-10 | easylogging++: avoid creating directory/filename for the builtin default log ↵ | moneromooo-monero | 1 | -0/+2 | |
file | |||||
2017-04-10 | easylogging++: Print thread ID in a nicer way | moneromooo-monero | 1 | -0/+7 | |
2017-04-10 | easylogging++: add categories | moneromooo-monero | 2 | -1/+121 | |
2017-04-10 | update easylogging++ to latest upstream | moneromooo-monero | 4 | -5754/+6499 | |
2017-02-12 | Fixup choice of easylogging++ vs libunwind stack trace code | moneromooo-monero | 1 | -0/+3 | |
2017-02-07 | Fix race in setThreadName/getThreadName | Lee Clagett | 1 | -0/+2 | |
2017-02-05 | easylogging++: do not disable DEBUG level based on _DEBUG/NDEBUG | moneromooo-monero | 1 | -2/+2 | |
2017-02-01 | Fixed a deadlock issue with easylogger++ | NanoAkron | 1 | -2/+2 | |
Ubuntu 16.04/GCC 5.4.0/ARMv8 fix to match previous recursive mutex fix for GCC | |||||
2017-01-20 | easylogging++: detect DragonFly BSD as a UNIX | moneromooo-monero | 1 | -1/+6 | |
2017-01-16 | easylogging++: enforce recursive mutex | moneromooo-monero | 1 | -1/+5 | |
This fixes a hang when logging something which causes some other logging code to be called | |||||
2017-01-16 | easylogging++: fix logging with static const header only data members | moneromooo-monero | 1 | -1/+13 | |
2017-01-16 | easylogging++: add ELPP_DISABLE_CHECK_MACROS | moneromooo-monero | 1 | -0/+2 | |
2017-01-16 | easylogging++: allow clipping a common filename prefix | moneromooo-monero | 1 | -3/+20 | |
2017-01-16 | easylogging++: add file-only logs | moneromooo-monero | 1 | -10/+12 | |
2017-01-16 | eayslogging++: Fix bad memory access before opening any files | moneromooo-monero | 1 | -0/+1 | |
2017-01-16 | easylogging++: avoid creating directory/filename for the builtin default log ↵ | moneromooo-monero | 1 | -0/+2 | |
file | |||||
2017-01-16 | easylogging++: allow setting thread names | moneromooo-monero | 1 | -1/+16 | |
2017-01-16 | easylogging++: Print thread ID in a nicer way | moneromooo-monero | 1 | -1/+2 | |
2017-01-16 | easylogging++: Add logging categories | moneromooo-monero | 1 | -1/+111 | |
2017-01-16 | easylogging++: import upstream | moneromooo-monero | 1 | -0/+6695 | |