<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/rpc/core_rpc_server.h, branch v0.10.2</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.10.2</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.10.2'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2017-02-21T17:38:18Z</updated>
<entry>
<title>update copyright year, fix occasional lack of newline at line end</title>
<updated>2017-02-21T17:38:18Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2017-02-21T17:38:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c3599fa7b94764d8f1cf7828a3f3a46067efe359'/>
<id>urn:sha1:c3599fa7b94764d8f1cf7828a3f3a46067efe359</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add server auth to monerod, and client auth to wallet-cli and wallet-rpc</title>
<updated>2017-02-06T06:15:41Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2017-02-05T22:48:03Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ce7fcbb4aea884bb4bf433cf419ffa267f859c87'/>
<id>urn:sha1:ce7fcbb4aea884bb4bf433cf419ffa267f859c87</id>
<content type='text'>
</content>
</entry>
<entry>
<title>p2p: always recreate a new peer id on startup</title>
<updated>2017-01-22T11:37:55Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-01-22T11:37:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4cdf0a35c94dac303fd703c05eb6685fc401a323'/>
<id>urn:sha1:4cdf0a35c94dac303fd703c05eb6685fc401a323</id>
<content type='text'>
This prevents easy fingerprinting when you change IPs, and
will be a must when kovri gets used.
</content>
</entry>
<entry>
<title>Merge pull request #1569</title>
<updated>2017-01-16T01:32:57Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2017-01-16T01:32:57Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ab69d5b3670cc21a10aab9ad16919afdcc80fdba'/>
<id>urn:sha1:ab69d5b3670cc21a10aab9ad16919afdcc80fdba</id>
<content type='text'>
16b8b66a specify restore height by YYYY-MM-DD format (kenshi84)
</content>
</entry>
<entry>
<title>specify restore height by YYYY-MM-DD format</title>
<updated>2017-01-16T01:00:28Z</updated>
<author>
<name>kenshi84</name>
<email>kenshi84@protonmail.ch</email>
</author>
<published>2016-12-25T08:18:15Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=16b8b66adcad57983b099fdf3ac1b52519390bc6'/>
<id>urn:sha1:16b8b66adcad57983b099fdf3ac1b52519390bc6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change logging to easylogging++</title>
<updated>2017-01-16T00:25:46Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-01-01T16:34:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5833d66f6540e7b34e10ddef37c2b67bd501994b'/>
<id>urn:sha1:5833d66f6540e7b34e10ddef37c2b67bd501994b</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>rpc: new function and RPC to get alternative chain info</title>
<updated>2016-12-17T11:28:49Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-12-17T11:25:15Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=55fa0479a0db599d81500e57e355124f1fb9c05e'/>
<id>urn:sha1:55fa0479a0db599d81500e57e355124f1fb9c05e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a get_outs (fully text based) version of get_outs.bin</title>
<updated>2016-11-22T20:00:40Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-11-22T20:00:40Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=2c0173c722af7a6dc1f30c3423d97247a4fd1ad7'/>
<id>urn:sha1:2c0173c722af7a6dc1f30c3423d97247a4fd1ad7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpc: add a dynamic fee estimation RPC call</title>
<updated>2016-10-31T08:38:00Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-10-28T20:19:40Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e6deb8abda0b6560c8691f376d8a86aab163dd77'/>
<id>urn:sha1:e6deb8abda0b6560c8691f376d8a86aab163dd77</id>
<content type='text'>
</content>
</entry>
<entry>
<title>changed params from start/end index to height/count</title>
<updated>2016-10-10T21:19:36Z</updated>
<author>
<name>Dion Ahmetaj</name>
<email>Dion Ahmetaj</email>
</author>
<published>2016-10-10T21:19:36Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=dd6c44327be7d90574466bc37561b9d156466972'/>
<id>urn:sha1:dd6c44327be7d90574466bc37561b9d156466972</id>
<content type='text'>
</content>
</entry>
</feed>
