aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/miner.cpp
Commit message (Collapse)AuthorAgeFilesLines
* extract some basic code from libcryptonote_core into libcryptonote_basickenshi842017-02-081-414/+0
|
* Remove boost/foreach.cpp includesMiguel Herranz2017-01-221-1/+0
|
* Replace BOOST_FOREACH with C++11 ranged forMiguel Herranz2017-01-221-1/+1
|
* Change logging to easylogging++moneromooo-monero2017-01-161-11/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the epee and data_loggers logging systems with a single one, and also adds filename:line and explicit severity levels. Categories may be defined, and logging severity set by category (or set of categories). epee style 0-4 log level maps to a sensible severity configuration. Log files now also rotate when reaching 100 MB. To select which logs to output, use the MONERO_LOGS environment variable, with a comma separated list of categories (globs are supported), with their requested severity level after a colon. If a log matches more than one such setting, the last one in the configuration string applies. A few examples: This one is (mostly) silent, only outputting fatal errors: MONERO_LOGS=*:FATAL This one is very verbose: MONERO_LOGS=*:TRACE This one is totally silent (logwise): MONERO_LOGS="" This one outputs all errors and warnings, except for the "verify" category, which prints just fatal errors (the verify category is used for logs about incoming transactions and blocks, and it is expected that some/many will fail to verify, hence we don't want the spam): MONERO_LOGS=*:WARNING,verify:FATAL Log levels are, in decreasing order of priority: FATAL, ERROR, WARNING, INFO, DEBUG, TRACE Subcategories may be added using prefixes and globs. This example will output net.p2p logs at the TRACE level, but all other net* logs only at INFO: MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE Logs which are intended for the user (which Monero was using a lot through epee, but really isn't a nice way to go things) should use the "global" category. There are a few helper macros for using this category, eg: MGINFO("this shows up by default") or MGINFO_RED("this is red"), to try to keep a similar look and feel for now. Existing epee log macros still exist, and map to the new log levels, but since they're used as a "user facing" UI element as much as a logging system, they often don't map well to log severities (ie, a log level 0 log may be an error, or may be something we want the user to see, such as an important info). In those cases, I tried to use the new macros. In other cases, I left the existing macros in. When modifying logs, it is probably best to switch to the new macros with explicit levels. The --log-level options and set_log commands now also accept category settings, in addition to the epee style log levels.
* Brackets to ensure doesn't function prematurely returnNanoAkron2016-10-041-0/+2
|
* Moved logging to target functions rather than callerNanoAkron2016-10-031-0/+3
|
* miner: do not try to save config if the path isn't setmoneromooo-monero2016-09-181-1/+2
| | | | | This saves on an exception dump when trying to write to / after finding a block.
* Revert "Print stack trace upon exceptions"moneromooo-monero2016-03-211-1/+0
| | | | | | Ain't nobody got time for link/cmake skullduggery. This reverts commit fff238ec94ac6d45fc18c315d7bc590ddfaad63d.
* Print stack trace upon exceptionsmoneromooo-monero2016-03-191-0/+1
| | | | Useful for debugging users' logs
* updated copyright yearRiccardo Spagni2015-12-311-1/+1
|
* miner: minor fixes on stopmoneromooo-monero2015-12-301-1/+4
| | | | | | | | - only try to stop if actually started - print number of threads before zeroing it This fixes the suspiciously doubled "Mining has been stopped" message on exit.
* Add missing semicolons after log statementsmoneromooo-monero2015-12-191-1/+1
|
* Replace tabs with two spaces for consistency with rest of codebasewarptangent2015-12-151-15/+14
| | | | Remove trailing whitespace in same files.
* year updated in licenseRiccardo Spagni2015-01-021-1/+1
|
* Separate testnet address prefixZachary Michaels2014-09-151-2/+2
|
* License updated to BSD 3-clausefluffypony2014-07-231-4/+29
|
* Update miner.cppNoodleDoodleNoodleDoodleNoodleDoodleNoo2014-06-161-1/+4
| | | 1. Added support for scratchpad memory allocation.
* 'mining_status' Daemon RPC commandNeozaru2014-05-251-4/+15
|
* mac osx building fixesmydesktop2014-04-301-3/+8
|
* Improvements in JSON RPCAntonio Juarez2014-04-071-2/+6
|
* moved all stuff to githubAntonio Juarez2014-03-031-0/+356