| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | logging: Generalize terminal color detection | iamamyth | 2025-12-29 | 2 | -4/+14 |
| | | | | | | | | Assume the terminal supports color codes if TERM ends with `-color` or `-256color`, rather than special-casing a handful of such terminals. Co-authored-by: laanwj <126646+laanwj@users.noreply.github.com> | ||||
| * | Fix logging deadlock | j-berman | 2025-11-11 | 2 | -25/+5 |
| | | |||||
| * | Fix logging lock, future optimizations may needed | Lee *!* Clagett | 2025-09-02 | 1 | -2/+3 |
| | | |||||
| * | heed NO_COLOR environment variable | moneromooo-monero | 2023-10-31 | 1 | -0/+5 |
| | | |||||
| * | Merge pull request #7945 | luigi1111 | 2021-09-23 | 1 | -1/+4 |
| |\ | | | | | | | 4afd9a7 cmake: set required C/C++ standard to 11 (selsta) | ||||
| | * | cmake: set required C/C++ standard to 11 | selsta | 2021-09-16 | 1 | -1/+4 |
| | | | | | | | | | Co-authored-by: Jason Rhinelander <jason@imaginary.ca> | ||||
| * | | easylogging++: fix missing logs | moneromooo-monero | 2021-09-23 | 1 | -3/+4 |
| |/ | |||||
| * | EasyLogging++: new anti-UB test and propagating exception | mj-xmr | 2021-08-03 | 1 | -0/+1 |
| | | |||||
| * | Merge pull request #7380 | luigi1111 | 2021-06-24 | 1 | -3/+2 |
| |\ | | | | | | | 8889f49 easylogging++: fix potential memory corruption (moneromooo-monero) | ||||
| | * | easylogging++: fix potential memory corruption | moneromooo-monero | 2021-02-16 | 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 | ||||
| * | | CMake: glob missing headers for easylogging | mj-xmr | 2021-05-14 | 1 | -1/+5 |
| | | | |||||
| * | | cmake: set 3.5 as minimum version | selsta | 2021-04-27 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #7643 | luigi1111 | 2021-04-22 | 1 | -0/+1 |
| |\ \ | | | | | | | | | | 19ed7ab Test: Enable coverage for external repositories (mj-xmr) | ||||
| | * | | Test: Enable coverage for external repositories | mj-xmr | 2021-04-01 | 1 | -0/+1 |
| | | | | | | | | | | | | | Add monero_enable_coverage() for reuse in case C/CXX_FLAGS are overwritten. | ||||
| * | | | Merge pull request #7641 | luigi1111 | 2021-04-16 | 1 | -10/+14 |
| |\ \ \ | |/ / |/| | | | | | a16328e easylogging++: in place log sanitization (moneromooo-monero) | ||||
| | * | | easylogging++: in place log sanitization | moneromooo-monero | 2021-03-29 | 1 | -10/+14 |
| | |/ | | | | | | | saves an object ctor/dtor per log | ||||
| * / | Reduced executable size; reduced call sequence to "allowed" log function | Lee Clagett | 2021-01-16 | 2 | -15/+32 |
| |/ | |||||
| * | Merge pull request #6727 | Alexander Blair | 2020-08-16 | 1 | -0/+11 |
| |\ | | | | | | | | | | | | | 13eee1d6a rpc: reject wrong sized txid (moneromooo-monero) 92e6b7df2 easylogging++: fix crash with reentrant logging (moneromooo-monero) 6dd95d530 epee: guard against exceptions in RPC handlers (moneromooo-monero) 90016ad74 blockchain: guard against exceptions in add_new_block/children (moneromooo-monero) | ||||
| | * | easylogging++: fix crash with reentrant logging | moneromooo-monero | 2020-07-30 | 1 | -0/+11 |
| | | | |||||
| * | | For NetBSD, add instructions to README.md and define to ea_config.h | thomasvaughan | 2020-07-19 | 1 | -1/+1 |
| |/ | |||||
| * | easylogging++: sanitize log payload | moneromooo-monero | 2020-05-24 | 1 | -0/+96 |
| | | | | | | | Some of it might be coming from untrusted sources Reported by itsunixiknowthis | ||||
| * | easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning | xiphon | 2020-03-11 | 1 | -0/+2 |
| | | |||||
| * | Merge pull request #6209 | Alexander Blair | 2020-02-28 | 1 | -2/+5 |
| |\ | | | | | | | 94853487 easylogging++: add emscripten support (moneromooo-monero) | ||||
| | * | easylogging++: add emscripten support | moneromooo-monero | 2019-12-02 | 1 | -2/+5 |
| | | | | | | | | | | | This is upstream, but seems to have got lost in conflicts when merging support for BSDs or android. | ||||
| * | | easylogging++: add screen.xterm-256color to the "allow colour" TERM list | moneromooo-monero | 2019-10-26 | 1 | -1/+1 |
| |/ | |||||
| * | easylogging++: windows does not need terminal colour support | moneromooo-monero | 2019-10-24 | 1 | -0/+2 |
| | | |||||
| * | easylogging++: fix build with glibc | moneromooo-monero | 2019-10-08 | 1 | -0/+2 |
| | | |||||
| * | Merge pull request #5927 | luigi1111 | 2019-10-08 | 2 | -3/+9 |
| |\ | | | | | | | 6d378d9 easylogging++: always omit ANSI codes when colour is not supported (moneromooo-monero) | ||||
| | * | easylogging++: always omit ANSI codes when colour is not supported | moneromooo-monero | 2019-09-24 | 2 | -3/+9 |
| | | | |||||
| * | | Merge pulll request #5924 | luigi1111 | 2019-10-08 | 1 | -1/+1 |
| |\ \ | | | | | | | | | | 5bcbd97 Disable easylogging crash log on non-glibc libraries (omartijn) | ||||
| | * | | Disable easylogging crash log on non-glibc libraries | Martijn Otto | 2019-09-23 | 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 | ||||
| * | | | Revert "easylogging++: ensure it finds boost headers" | moneromooo-monero | 2019-09-24 | 1 | -1/+0 |
| | | | | | | | | | | | | | This reverts commit 9a95827ea72574c3e861aa3167c0b96b9bae64b3. | ||||
| * | | | easylogging++: split strings manually | moneromooo-monero | 2019-09-24 | 1 | -2/+13 |
| | | | | | | | | | | | | | Avoids cmake skullduggery | ||||
| * | | | easylogging++: ensure it finds boost headers | moneromooo-monero | 2019-09-24 | 1 | -0/+1 |
| | |/ |/| | |||||
| * | | Properly format multiline logs | moneromooo-monero | 2019-09-16 | 2 | -40/+138 |
| |/ | | | | | As a side effect, colouring on Windows should now work regardless of version | ||||
| * | easylogging++: weed out most calls to allowed without locking | moneromooo-monero | 2019-08-19 | 2 | -15/+26 |
| | | |||||
| * | Merge pull request #5442 | Riccardo Spagni | 2019-04-16 | 2 | -5/+22 |
| |\ | | | | | | | 428249c5 easylogging++: minimal stdout logging format (moneromooo-monero) | ||||
| | * | easylogging++: minimal stdout logging format | moneromooo-monero | 2019-04-14 | 2 | -5/+22 |
| | | | | | | | | | | | It's a bit of a hack, but doing it right would need a lot of changes to the easylogging++ source. | ||||
| * | | Merge pull request #5407 | Riccardo Spagni | 2019-04-16 | 2 | -15/+21 |
| |\ \ | | | | | | | | | | 66d73d2f easylogging++: update to v9.96.7 (moneromooo-monero) | ||||
| | * | | easylogging++: update to v9.96.7 | moneromooo-monero | 2019-04-07 | 2 | -15/+21 |
| | |/ | |||||
| * / | Fix linker issues using easylogging | Martijn Otto | 2019-04-10 | 1 | -1/+3 |
| |/ | |||||
| * | Update 2019 copyright | binaryFate | 2019-03-05 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #4950 | Riccardo Spagni | 2019-01-06 | 2 | -0/+21 |
| |\ | | | | | | | 68f045de easylogging++: check allowed categories before logging (moneromooo-monero) | ||||
| | * | easylogging++: check allowed categories before logging | moneromooo-monero | 2018-12-07 | 2 | -0/+21 |
| | | | |||||
| * | | Merge pull request #4936 | luigi1111 | 2018-12-31 | 2 | -9/+8 |
| |\ \ | | | | | | | | | | 7d9aeb7 easylogging++: avoid uneeded temporary std::string object (moneromooo-monero) | ||||
| | * | | easylogging++: avoid uneeded temporary std::string object | moneromooo-monero | 2018-12-03 | 2 | -9/+8 |
| | |/ | |||||
| * | | Merge pull request #4925 | Riccardo Spagni | 2018-12-12 | 1 | -0/+1 |
| |\ \ | | | | | | | | | | | | | | | | ab783b17 easylogging++: ensure logger is initialized before main (moneromooo-monero) 9b69a0ae daemon: print monero version at startup when calling a detached daemon (moneromooo-monero) 4d71d463 mlocker: remove early page size log (moneromooo-monero) | ||||
| | * | | easylogging++: ensure logger is initialized before main | moneromooo-monero | 2018-11-30 | 1 | -0/+1 |
| | |/ | |||||
| * | | easylogging++: faster access to logging | moneromooo-monero | 2018-11-27 | 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. | ||||
| * | | Revert "easylogging++: make the logger handle early/late logging" | moneromooo-monero | 2018-11-27 | 2 | -17/+4 |
| |/ | | | | This reverts commit 7f8bdeb35c73c70b2b65e30aa2a1cb93696355b3. | ||||
