aboutsummaryrefslogtreecommitdiff
path: root/external/easylogging++/easylogging++.cc (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-09-23easylogging++: fix missing logsmoneromooo-monero1-3/+4
2020-07-30easylogging++: fix crash with reentrant loggingmoneromooo-monero1-0/+11
2020-05-24easylogging++: sanitize log payloadmoneromooo-monero1-0/+96
Some of it might be coming from untrusted sources Reported by itsunixiknowthis
2019-10-26easylogging++: add screen.xterm-256color to the "allow colour" TERM listmoneromooo-monero1-1/+1
2019-10-24easylogging++: windows does not need terminal colour supportmoneromooo-monero1-0/+2
2019-10-08Merge pull request #5927luigi11111-3/+8
6d378d9 easylogging++: always omit ANSI codes when colour is not supported (moneromooo-monero)
2019-09-24easylogging++: split strings manuallymoneromooo-monero1-2/+13
Avoids cmake skullduggery
2019-09-24easylogging++: always omit ANSI codes when colour is not supportedmoneromooo-monero1-3/+8
2019-09-16Properly format multiline logsmoneromooo-monero1-23/+107
As a side effect, colouring on Windows should now work regardless of version
2019-08-19easylogging++: weed out most calls to allowed without lockingmoneromooo-monero1-15/+22
2019-04-16Merge pull request #5442Riccardo Spagni1-4/+21
428249c5 easylogging++: minimal stdout logging format (moneromooo-monero)
2019-04-14easylogging++: minimal stdout logging formatmoneromooo-monero1-4/+21
It's a bit of a hack, but doing it right would need a lot of changes to the easylogging++ source.
2019-04-07easylogging++: update to v9.96.7moneromooo-monero1-9/+14
2019-01-06Merge pull request #4950Riccardo Spagni1-0/+19
68f045de easylogging++: check allowed categories before logging (moneromooo-monero)
2018-12-31Merge pull request #4936luigi11111-8/+7
7d9aeb7 easylogging++: avoid uneeded temporary std::string object (moneromooo-monero)
2018-12-12Merge pull request #4925Riccardo Spagni1-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)
2018-12-07easylogging++: check allowed categories before loggingmoneromooo-monero1-0/+19
2018-12-03easylogging++: avoid uneeded temporary std::string objectmoneromooo-monero1-8/+7
2018-11-30easylogging++: ensure logger is initialized before mainmoneromooo-monero1-0/+1
2018-11-27easylogging++: faster access to loggingmoneromooo-monero1-0/+6
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-27Revert "easylogging++: make the logger handle early/late logging"moneromooo-monero1-12/+0
This reverts commit 7f8bdeb35c73c70b2b65e30aa2a1cb93696355b3.
2018-11-06easylogging++: update to latest upstream (v9.96.5)moneromooo-monero1-88/+217
2018-10-23easylogging++: remove std::deque usagemoneromooo-monero1-1/+7
It's not actually needed for this use, and saves a STL header
2018-09-29Merge pull request #4459Riccardo Spagni1-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-07-15easylogging++: make the logger handle early/late loggingmoneromooo-monero1-0/+12
2018-04-25easylogging++: cached allowed categoriesmoneromooo-monero1-1/+10
It turns out this can be fairly heavy when logging a lot
2018-02-01call _exit instead of abort in release modemoneromooo-monero1-0/+6
Avoids cores being created, as they're nowadays often piped to some call home system
2017-12-18easylogging++: avoid buffer underflowmoneromooo-monero1-2/+3
2017-12-09easylogging: show the 'no stack trace' warning only onceston1th1-0/+1
If execinfo.h is not available, output the stack trace warning only once, so we don't spam the build logs with it.
2017-09-22easylogging++: add categories gettermoneromooo-monero1-1/+15
2017-05-28easylogging++: log timestamps in GMT for privacymoneromooo-monero1-3/+3
2017-05-05Merge pull request #1997Riccardo Spagni1-0/+1
5d86c9f4 easylogging++: default to creating categories by default (moneromooo-monero)
2017-04-22easylogging++: default to creating categories by defaultmoneromooo-monero1-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-12Easylogging: remove invalid static in function member definitionMoroccanMalinois1-1/+1
2017-04-10easylogging++: allow clipping a common filename prefixmoneromooo-monero1-3/+15
2017-04-10easylogging++: add file-only logsmoneromooo-monero1-9/+11
2017-04-10eayslogging++: Fix bad memory access before opening any filesmoneromooo-monero1-0/+1
2017-04-10easylogging++: avoid creating directory/filename for the builtin default log ↵moneromooo-monero1-0/+2
file
2017-04-10easylogging++: add categoriesmoneromooo-monero1-1/+102
2017-04-10update easylogging++ to latest upstreammoneromooo-monero1-0/+2979