Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 2 | -2/+2 | |
2017-02-16 | switch to boost::thread for mingw build | Lee Clagett | 2 | -29/+32 | |
2017-02-04 | update wallet api tests | Jaquee | 1 | -7/+8 | |
2017-01-16 | Change logging to easylogging++ | moneromooo-monero | 1 | -0/+1 | |
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. | |||||
2017-01-12 | Wallet2 + API: Callbacks for unconfirmed transfers | Jaquee | 1 | -0/+10 | |
2016-12-13 | Bitmonero namespace renamed Monero. Bitmonero namespace alias added so that ↵ | Randi Joseph | 1 | -136/+136 | |
third party uses of the wallet api can transition. | |||||
2016-10-06 | libwallet_api: test: adjusted mixin_count=4 as it's minumum allowed | Ilya Kitaev | 1 | -3/+4 | |
2016-10-06 | libwallet_api: some renamings | Ilya Kitaev | 1 | -6/+8 | |
2016-10-01 | libwallet_api: do not use fast-refresh on recovery | Ilya Kitaev | 1 | -11/+53 | |
2016-09-30 | libwallet_api: fast-refresh in case of opening non-synced wallet | Ilya Kitaev | 1 | -1/+25 | |
2016-09-30 | libwallet_api: fast-refresh for new wallet | Ilya Kitaev | 1 | -3/+28 | |
2016-09-28 | libwallet_api: test for create/init wallet on mainnet | Ilya Kitaev | 1 | -3/+50 | |
2016-09-28 | libwallet_api: tests: fixed WalletCallbackReceived test | Ilya Kitaev | 1 | -3/+7 | |
2016-09-27 | libwallet_api: tests: test fixed according implementation | Ilya Kitaev | 1 | -1/+0 | |
2016-09-27 | libwallet_api: tests: compilation errors fixed | Ilya Kitaev | 1 | -2/+2 | |
2016-09-26 | wallet2_api: added Wallet::daemonBlockChainHeight() | Ilya Kitaev | 2 | -5/+21 | |
2016-09-26 | libwallet_api: Wallet::blockChainHeight, WalletListener::newBlock | Ilya Kitaev | 1 | -2/+49 | |
2016-09-23 | libwallet_api: simple documentation on testing environment | Ilya Kitaev | 2 | -3/+25 | |
2016-09-22 | libwallet_api: tests: env variables for WALLETS_ROOT_DIR and | Ilya Kitaev | 1 | -13/+36 | |
TESTNET_DAEMON_ADDRESS | |||||
2016-09-22 | libwallet_api: tests: changed testwallets path, uncommitted all tests | Ilya Kitaev | 1 | -12/+14 | |
2016-09-20 | wallet2_api: getter and setter for "refresh interval" | Ilya Kitaev | 1 | -6/+13 | |
2016-09-18 | cmake: transitive deps and remove deprecated LINK_* | redfish | 1 | -1/+5 | |
Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared. | |||||
2016-09-03 | fix remaining bitmonero and simplewallet bits | Riccardo Spagni | 10 | -10/+10 | |
2016-08-30 | tests: cmake: fix building with system gtest | redfish | 1 | -1/+1 | |
Issues #980 #983 | |||||
2016-08-23 | libwallet_api: tests: checking for result while opening wallet | Ilya Kitaev | 1 | -4/+6 | |
2016-08-23 | libwallet_api: Wallet::amountFromString fixed | Ilya Kitaev | 1 | -0/+23 | |
2016-08-22 | libwallet_api: tests: removed logged passwords | Ilya Kitaev | 1 | -2/+2 | |
2016-08-22 | libwallet_api: do not store wallet on close if status is not ok | Ilya Kitaev | 1 | -2/+67 | |
2016-07-18 | wallet_api: async init, Wallet::connected status, log level | Ilya Kitaev | 1 | -20/+81 | |
2016-07-18 | WalletListener functionality | Ilya Kitaev | 2 | -39/+90 | |
2016-07-18 | Transaction fee multiplier aka priority integraged | Ilya Kitaev | 1 | -0/+42 | |
2016-06-23 | Merge branch 'master' of https://github.com/mbg033/bitmonero | Ilya Kitaev | 1 | -11/+6 | |
2016-06-23 | Wallet: payment id and integrated address | Ilya Kitaev | 1 | -3/+76 | |
2016-06-23 | Wallet::createTransaction: added mixin_count param | Ilya Kitaev | 1 | -1/+40 | |
2016-06-23 | double/string to monero integer convertion methods | Ilya Kitaev | 1 | -2/+14 | |
2016-06-23 | wallet::default_mixin exposed to public interface as | Ilya Kitaev | 1 | -0/+2 | |
Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction | |||||
2016-06-23 | Wallet::filename, Wallet::keysFilename, tests for move wallet | Ilya Kitaev | 1 | -0/+29 | |
2016-06-23 | Wallet API : WalletManager::findWallets() added | Ilya Kitaev | 4 | -15/+29 | |
2016-06-23 | scripts for faster test wallets generation | Ilya Kitaev | 11 | -19/+120 | |
2016-06-23 | regenerated test wallets, basic functions got broken | Ilya Kitaev | 1 | -17/+20 | |
2016-06-23 | WalletListener::moneyReceived test | Ilya Kitaev | 1 | -12/+38 | |
2016-06-23 | WalletListener::moneySpent test | Ilya Kitaev | 1 | -53/+154 | |
2016-06-23 | TransactionHistory continued | Ilya Kitaev | 1 | -11/+55 | |
2016-06-23 | Wallet API : transaction history in progress | Ilya Kitaev | 1 | -0/+28 | |
2016-06-23 | Wallet::createTransaction API introduced | Ilya Kitaev | 1 | -3/+11 | |
Transaction API continued TODOs for Transaction/Transfer interface | |||||
2016-06-23 | Wallet::transfer in progress | Ilya Kitaev | 1 | -0/+16 | |
2016-06-23 | Wallet::refresh + tests | Ilya Kitaev | 1 | -0/+12 | |
2016-06-23 | testnet option, Wallet::balance(), Wallet::unlockedBalance() | Ilya Kitaev | 1 | -11/+12 | |
2016-06-23 | - testnet option added to api; | Ilya Kitaev | 1 | -24/+44 | |
2016-06-23 | wallet2::store() implemented within wallet2::store_to | Ilya Kitaev | 1 | -0/+25 | |
2016-06-20 | Wallet::createTransaction: added mixin_count param | Ilya Kitaev | 1 | -1/+40 | |
2016-06-16 | double/string to monero integer convertion methods | Ilya Kitaev | 1 | -2/+14 | |
2016-06-10 | wallet::default_mixin exposed to public interface as | Ilya Kitaev | 1 | -0/+2 | |
Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction | |||||
2016-06-10 | Wallet::filename, Wallet::keysFilename, tests for move wallet | Ilya Kitaev | 1 | -0/+29 | |
2016-06-03 | Wallet API : WalletManager::findWallets() added | Ilya Kitaev | 4 | -15/+29 | |
2016-06-01 | scripts for faster test wallets generation | Ilya Kitaev | 11 | -19/+120 | |
2016-05-27 | regenerated test wallets, basic functions got broken | Ilya Kitaev | 1 | -17/+20 | |
2016-05-17 | WalletListener::moneyReceived test | Ilya Kitaev | 1 | -12/+38 | |
2016-05-16 | WalletListener::moneySpent test | Ilya Kitaev | 1 | -53/+154 | |
2016-04-29 | TransactionHistory continued | Ilya Kitaev | 1 | -11/+55 | |
2016-04-22 | Wallet API: transaction history in progress | Ilya Kitaev | 1 | -4/+4 | |
2016-04-22 | Wallet API : transaction history in progress | Ilya Kitaev | 1 | -0/+28 | |
2016-04-12 | TODOs for Transaction/Transfer interface | Ilya Kitaev | 1 | -4/+4 | |
2016-04-06 | Transaction API continued | Ilya Kitaev | 1 | -0/+2 | |
2016-04-05 | Wallet::createTransaction API introduced | Ilya Kitaev | 1 | -2/+8 | |
2016-04-04 | Wallet::transfer() continued | Ilya Kitaev | 1 | -0/+16 | |
2016-03-31 | Wallet::refresh + tests | Ilya Kitaev | 1 | -0/+12 | |
2016-03-31 | testnet option, Wallet::balance(), Wallet::unlockedBalance() | Ilya Kitaev | 1 | -11/+12 | |
2016-03-25 | - testnet option added to api; | Ilya Kitaev | 1 | -24/+44 | |
2016-03-21 | wallet2::store() implemented within wallet2::store_to | Ilya Kitaev | 1 | -0/+25 | |
2016-03-16 | Wallet::store_to(path, password) implemented; | Ilya Kitaev | 1 | -1/+64 | |
2016-03-16 | Wallet::address implemented | Ilya Kitaev | 1 | -0/+8 | |
2016-03-16 | WalletManager::recoveryWallet implemented | Ilya Kitaev | 1 | -5/+14 | |
2016-03-16 | Wallet::setPassword() method for wallet2_api | Ilya Kitaev | 1 | -4/+22 | |
2016-03-16 | changes in wallet2_api + implemented WalletManager::openWallet | Ilya Kitaev | 1 | -5/+25 | |
2016-03-16 | get_seed() included to interface | Ilya Kitaev | 1 | -9/+34 | |
2016-03-16 | tests for wallet2_api | Ilya Kitaev | 2 | -0/+128 | |