2019-04-12 06:36:43 +02:00
// Copyright (c) 2014-2019, The Monero Project
2018-04-10 06:49:20 +02:00
// Copyright (c) 2018, The Loki Project
2016-11-09 04:55:41 +01:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# include "wallet/wallet_args.h"
# include <boost/filesystem/path.hpp>
2017-11-25 23:25:05 +01:00
# include <boost/filesystem/operations.hpp>
2016-11-09 04:55:41 +01:00
# include <boost/format.hpp>
# include "common/i18n.h"
# include "common/util.h"
2020-05-30 06:06:16 +02:00
# include "common/file.h"
2016-11-09 04:55:41 +01:00
# include "misc_log_ex.h"
# include "string_tools.h"
# include "version.h"
2018-11-23 05:18:08 +01:00
# include "common/loki_integration_test_hooks.h"
2016-11-09 04:55:41 +01:00
# if defined(WIN32)
# include <crtdbg.h>
# endif
2018-04-10 06:49:20 +02:00
# undef LOKI_DEFAULT_LOG_CATEGORY
# define LOKI_DEFAULT_LOG_CATEGORY "wallet.wallet2"
Change logging to easylogging++
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-01 17:34:23 +01:00
2016-11-09 04:55:41 +01:00
// workaround for a suspected bug in pthread/kernel on MacOS X
# ifdef __APPLE__
# define DEFAULT_MAX_CONCURRENCY 1
# else
# define DEFAULT_MAX_CONCURRENCY 0
# endif
2017-10-29 00:04:24 +02:00
namespace
{
class Print
{
public :
Print ( const std : : function < void ( const std : : string & , bool ) > & p , bool em = false ) : print ( p ) , emphasis ( em ) { }
~ Print ( ) { print ( ss . str ( ) , emphasis ) ; }
template < typename T > std : : ostream & operator < < ( const T & t ) { ss < < t ; return ss ; }
private :
const std : : function < void ( const std : : string & , bool ) > & print ;
std : : stringstream ss ;
bool emphasis ;
} ;
}
2016-11-09 04:55:41 +01:00
namespace wallet_args
{
// Create on-demand to prevent static initialization order fiasco issues.
command_line : : arg_descriptor < std : : string > arg_generate_from_json ( )
{
return { " generate-from-json " , wallet_args : : tr ( " Generate wallet from JSON format file " ) , " " } ;
}
command_line : : arg_descriptor < std : : string > arg_wallet_file ( )
{
return { " wallet-file " , wallet_args : : tr ( " Use wallet <arg> " ) , " " } ;
}
const char * tr ( const char * str )
{
return i18n_translate ( str , " wallet_args " ) ;
}
2020-06-02 00:30:19 +02:00
std : : pair < std : : optional < boost : : program_options : : variables_map > , bool > main (
2016-11-09 04:55:41 +01:00
int argc , char * * argv ,
const char * const usage ,
2017-06-30 18:36:31 +02:00
const char * const notice ,
2016-11-09 04:55:41 +01:00
boost : : program_options : : options_description desc_params ,
daemon & daemonize overhaul
This commit continues the complete replacement of the spaghetti code
mess that was inside daemon/ and daemonize/ which started in #1138, and
looked like a entry level Java programmer threw up inside the code base.
This greatly simplifies it, removing a whole pile of useless abstraction
layers that don't actually abstract anything, and results in
considerably simpler code. (Many of the changes here were also carried
out in #1138; this commit updates them with the merged result which
amends some things from that PR and goes further in some places).
In detail:
- the `--detach` (and related `--pidfile`) options are gone. (--detach
is still handled, but now just prints a fatal error). Detaching a
process is an archaic unix mechanism that has no place on a modern
system. If you *really* want to do it anyway, `nohup lokid &` will do
the job. (The Windows service control code, which is probably seldom
used, is kept because it seems potentially useful for Windows users).
- Many of the `t_whatever` classes in daemon/* are just deleted (mostly
done in #1138); each one was a bunch of junk code that wraps 3-4 lines
but forces an extra layer (not even a generic abstraction, just a
useless wrapper) for no good reason and made the daemon code painfully
hard to understand and work with.
- All of the remaining `t_whatever` classes in daemon/* are either
renamed to `whatever` (because prefixing every class with `t_` is
moronic).
- Some stupid related code (e.g. epee's command handler returning an
unsuitable "usage" string that has to be string modified into what we
want) was replaced with more generic, useful code.
- Replaced boost mutexes/cvs with std ones in epee command handler, and
deleted some commented out code.
- The `--public-node` option handling was terrible: it was being handled
in main, but main doesn't know anything about options, so then it
forced it through the spaghetti objects *beside* the pack of all
options that got passed along. Moved it to a more sane location
(core_rpc_server) and parse it out with some sanity.
- Changed a bunch of std::bind's to lambdas because, at least for small
lambdas (i.e. with only one-or-two pointers for captures) they will
generally be more efficient as the values can be stored in
std::function's without any memory allocations.
2020-04-02 22:38:52 +02:00
boost : : program_options : : options_description hidden_params ,
2017-01-28 12:37:21 +01:00
const boost : : program_options : : positional_options_description & positional_options ,
2017-10-29 00:04:24 +02:00
const std : : function < void ( const std : : string & , bool ) > & print ,
2017-02-26 23:59:46 +01:00
const char * default_log_name ,
2017-01-28 12:37:21 +01:00
bool log_to_console )
2016-11-09 04:55:41 +01:00
{
namespace bf = boost : : filesystem ;
namespace po = boost : : program_options ;
# ifdef WIN32
_CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ) ;
# endif
Change logging to easylogging++
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-01 17:34:23 +01:00
const command_line : : arg_descriptor < std : : string > arg_log_level = { " log-level " , " 0-4 or categories " , " " } ;
2017-09-17 04:42:45 +02:00
const command_line : : arg_descriptor < std : : size_t > arg_max_log_file_size = { " max-log-file-size " , " Specify maximum log file size [B] " , MAX_LOG_FILE_SIZE } ;
2018-06-01 05:29:26 +02:00
const command_line : : arg_descriptor < std : : size_t > arg_max_log_files = { " max-log-files " , " Specify maximum number of rotated log files to be saved (no limit by setting to 0) " , MAX_LOG_FILES } ;
2016-11-09 04:55:41 +01:00
const command_line : : arg_descriptor < uint32_t > arg_max_concurrency = { " max-concurrency " , wallet_args : : tr ( " Max number of threads to use for a parallel job " ) , DEFAULT_MAX_CONCURRENCY } ;
const command_line : : arg_descriptor < std : : string > arg_log_file = { " log-file " , wallet_args : : tr ( " Specify log file " ) , " " } ;
2017-03-12 21:45:59 +01:00
const command_line : : arg_descriptor < std : : string > arg_config_file = { " config-file " , wallet_args : : tr ( " Config file " ) , " " , true } ;
2016-11-09 04:55:41 +01:00
std : : string lang = i18n_get_language ( ) ;
2017-10-03 11:12:57 +02:00
tools : : on_startup ( ) ;
2018-07-15 14:20:36 +02:00
# ifdef NDEBUG
tools : : disable_core_dumps ( ) ;
# endif
2016-11-09 04:55:41 +01:00
tools : : set_strict_default_file_permissions ( true ) ;
epee : : string_tools : : set_module_name_and_folder ( argv [ 0 ] ) ;
po : : options_description desc_general ( wallet_args : : tr ( " General options " ) ) ;
command_line : : add_arg ( desc_general , command_line : : arg_help ) ;
command_line : : add_arg ( desc_general , command_line : : arg_version ) ;
2017-09-10 13:05:18 +02:00
command_line : : add_arg ( desc_params , arg_log_file ) ;
2016-11-09 04:55:41 +01:00
command_line : : add_arg ( desc_params , arg_log_level ) ;
2017-09-17 04:42:45 +02:00
command_line : : add_arg ( desc_params , arg_max_log_file_size ) ;
2018-06-01 05:29:26 +02:00
command_line : : add_arg ( desc_params , arg_max_log_files ) ;
2016-11-09 04:55:41 +01:00
command_line : : add_arg ( desc_params , arg_max_concurrency ) ;
2017-03-12 21:45:59 +01:00
command_line : : add_arg ( desc_params , arg_config_file ) ;
2016-11-09 04:55:41 +01:00
2018-11-23 05:18:08 +01:00
# if defined(LOKI_ENABLE_INTEGRATION_TEST_HOOKS)
2020-02-21 04:48:25 +01:00
command_line : : add_arg ( desc_params , integration_test : : arg_pipe_name ) ;
2018-11-23 05:18:08 +01:00
# endif
2018-04-10 06:49:20 +02:00
i18n_set_language ( " translations " , " loki " , lang ) ;
2016-11-09 04:55:41 +01:00
daemon & daemonize overhaul
This commit continues the complete replacement of the spaghetti code
mess that was inside daemon/ and daemonize/ which started in #1138, and
looked like a entry level Java programmer threw up inside the code base.
This greatly simplifies it, removing a whole pile of useless abstraction
layers that don't actually abstract anything, and results in
considerably simpler code. (Many of the changes here were also carried
out in #1138; this commit updates them with the merged result which
amends some things from that PR and goes further in some places).
In detail:
- the `--detach` (and related `--pidfile`) options are gone. (--detach
is still handled, but now just prints a fatal error). Detaching a
process is an archaic unix mechanism that has no place on a modern
system. If you *really* want to do it anyway, `nohup lokid &` will do
the job. (The Windows service control code, which is probably seldom
used, is kept because it seems potentially useful for Windows users).
- Many of the `t_whatever` classes in daemon/* are just deleted (mostly
done in #1138); each one was a bunch of junk code that wraps 3-4 lines
but forces an extra layer (not even a generic abstraction, just a
useless wrapper) for no good reason and made the daemon code painfully
hard to understand and work with.
- All of the remaining `t_whatever` classes in daemon/* are either
renamed to `whatever` (because prefixing every class with `t_` is
moronic).
- Some stupid related code (e.g. epee's command handler returning an
unsuitable "usage" string that has to be string modified into what we
want) was replaced with more generic, useful code.
- Replaced boost mutexes/cvs with std ones in epee command handler, and
deleted some commented out code.
- The `--public-node` option handling was terrible: it was being handled
in main, but main doesn't know anything about options, so then it
forced it through the spaghetti objects *beside* the pack of all
options that got passed along. Moved it to a more sane location
(core_rpc_server) and parse it out with some sanity.
- Changed a bunch of std::bind's to lambdas because, at least for small
lambdas (i.e. with only one-or-two pointers for captures) they will
generally be more efficient as the values can be stored in
std::function's without any memory allocations.
2020-04-02 22:38:52 +02:00
po : : options_description desc_all , desc_visible ;
desc_visible . add ( desc_general ) . add ( desc_params ) ;
desc_all . add ( desc_visible ) . add ( hidden_params ) ;
2016-11-09 04:55:41 +01:00
po : : variables_map vm ;
2018-04-15 07:52:53 +02:00
bool should_terminate = false ;
daemon & daemonize overhaul
This commit continues the complete replacement of the spaghetti code
mess that was inside daemon/ and daemonize/ which started in #1138, and
looked like a entry level Java programmer threw up inside the code base.
This greatly simplifies it, removing a whole pile of useless abstraction
layers that don't actually abstract anything, and results in
considerably simpler code. (Many of the changes here were also carried
out in #1138; this commit updates them with the merged result which
amends some things from that PR and goes further in some places).
In detail:
- the `--detach` (and related `--pidfile`) options are gone. (--detach
is still handled, but now just prints a fatal error). Detaching a
process is an archaic unix mechanism that has no place on a modern
system. If you *really* want to do it anyway, `nohup lokid &` will do
the job. (The Windows service control code, which is probably seldom
used, is kept because it seems potentially useful for Windows users).
- Many of the `t_whatever` classes in daemon/* are just deleted (mostly
done in #1138); each one was a bunch of junk code that wraps 3-4 lines
but forces an extra layer (not even a generic abstraction, just a
useless wrapper) for no good reason and made the daemon code painfully
hard to understand and work with.
- All of the remaining `t_whatever` classes in daemon/* are either
renamed to `whatever` (because prefixing every class with `t_` is
moronic).
- Some stupid related code (e.g. epee's command handler returning an
unsuitable "usage" string that has to be string modified into what we
want) was replaced with more generic, useful code.
- Replaced boost mutexes/cvs with std ones in epee command handler, and
deleted some commented out code.
- The `--public-node` option handling was terrible: it was being handled
in main, but main doesn't know anything about options, so then it
forced it through the spaghetti objects *beside* the pack of all
options that got passed along. Moved it to a more sane location
(core_rpc_server) and parse it out with some sanity.
- Changed a bunch of std::bind's to lambdas because, at least for small
lambdas (i.e. with only one-or-two pointers for captures) they will
generally be more efficient as the values can be stored in
std::function's without any memory allocations.
2020-04-02 22:38:52 +02:00
bool r = command_line : : handle_error_helper ( desc_visible , [ & ] ( )
2016-11-09 04:55:41 +01:00
{
2017-02-26 23:59:46 +01:00
auto parser = po : : command_line_parser ( argc , argv ) . options ( desc_all ) . positional ( positional_options ) ;
2016-11-09 04:55:41 +01:00
po : : store ( parser . run ( ) , vm ) ;
2017-03-12 21:45:59 +01:00
2018-11-23 05:18:08 +01:00
# if defined(LOKI_ENABLE_INTEGRATION_TEST_HOOKS)
{
2020-02-21 04:48:25 +01:00
const std : : string arg_pipe_name = command_line : : get_arg ( vm , integration_test : : arg_pipe_name ) ;
integration_test : : init ( arg_pipe_name ) ;
2018-11-23 05:18:08 +01:00
}
# endif
2017-09-10 15:12:32 +02:00
if ( command_line : : get_arg ( vm , command_line : : arg_help ) )
{
2020-04-03 18:30:11 +02:00
Print ( print ) < < " Loki ' " < < LOKI_RELEASE_NAME < < " ' (v " < < LOKI_VERSION_FULL < < " ) \n " ;
2018-04-10 06:49:20 +02:00
Print ( print ) < < wallet_args : : tr ( " This is the command line loki wallet. It needs to connect to a loki \n "
2020-04-03 18:30:11 +02:00
" daemon to work correctly. " ) < < " \n " ;
Print ( print ) < < wallet_args : : tr ( " Usage: " ) < < " \n " < < usage ;
daemon & daemonize overhaul
This commit continues the complete replacement of the spaghetti code
mess that was inside daemon/ and daemonize/ which started in #1138, and
looked like a entry level Java programmer threw up inside the code base.
This greatly simplifies it, removing a whole pile of useless abstraction
layers that don't actually abstract anything, and results in
considerably simpler code. (Many of the changes here were also carried
out in #1138; this commit updates them with the merged result which
amends some things from that PR and goes further in some places).
In detail:
- the `--detach` (and related `--pidfile`) options are gone. (--detach
is still handled, but now just prints a fatal error). Detaching a
process is an archaic unix mechanism that has no place on a modern
system. If you *really* want to do it anyway, `nohup lokid &` will do
the job. (The Windows service control code, which is probably seldom
used, is kept because it seems potentially useful for Windows users).
- Many of the `t_whatever` classes in daemon/* are just deleted (mostly
done in #1138); each one was a bunch of junk code that wraps 3-4 lines
but forces an extra layer (not even a generic abstraction, just a
useless wrapper) for no good reason and made the daemon code painfully
hard to understand and work with.
- All of the remaining `t_whatever` classes in daemon/* are either
renamed to `whatever` (because prefixing every class with `t_` is
moronic).
- Some stupid related code (e.g. epee's command handler returning an
unsuitable "usage" string that has to be string modified into what we
want) was replaced with more generic, useful code.
- Replaced boost mutexes/cvs with std ones in epee command handler, and
deleted some commented out code.
- The `--public-node` option handling was terrible: it was being handled
in main, but main doesn't know anything about options, so then it
forced it through the spaghetti objects *beside* the pack of all
options that got passed along. Moved it to a more sane location
(core_rpc_server) and parse it out with some sanity.
- Changed a bunch of std::bind's to lambdas because, at least for small
lambdas (i.e. with only one-or-two pointers for captures) they will
generally be more efficient as the values can be stored in
std::function's without any memory allocations.
2020-04-02 22:38:52 +02:00
Print ( print ) < < desc_visible ;
2018-04-15 07:52:53 +02:00
should_terminate = true ;
return true ;
2017-09-10 15:12:32 +02:00
}
else if ( command_line : : get_arg ( vm , command_line : : arg_version ) )
{
2018-04-10 06:49:20 +02:00
Print ( print ) < < " Loki ' " < < LOKI_RELEASE_NAME < < " ' (v " < < LOKI_VERSION_FULL < < " ) " ;
2018-04-15 07:52:53 +02:00
should_terminate = true ;
return true ;
2017-09-10 15:12:32 +02:00
}
2017-03-12 21:45:59 +01:00
if ( command_line : : has_arg ( vm , arg_config_file ) )
{
std : : string config = command_line : : get_arg ( vm , arg_config_file ) ;
bf : : path config_path ( config ) ;
boost : : system : : error_code ec ;
if ( bf : : exists ( config_path , ec ) )
{
po : : store ( po : : parse_config_file < char > ( config_path . string < std : : string > ( ) . c_str ( ) , desc_params ) , vm ) ;
}
else
{
2017-10-29 00:04:24 +02:00
MERROR ( wallet_args : : tr ( " Can't find config file " ) < < config ) ;
2017-03-12 21:45:59 +01:00
return false ;
}
}
2016-11-09 04:55:41 +01:00
po : : notify ( vm ) ;
return true ;
} ) ;
if ( ! r )
2020-06-02 00:30:19 +02:00
return { std : : nullopt , true } ;
2018-04-15 07:52:53 +02:00
if ( should_terminate )
return { std : : move ( vm ) , should_terminate } ;
2016-11-09 04:55:41 +01:00
2017-02-26 23:59:46 +01:00
std : : string log_path ;
2017-10-06 11:55:36 +02:00
if ( ! command_line : : is_arg_defaulted ( vm , arg_log_file ) )
2017-02-26 23:59:46 +01:00
log_path = command_line : : get_arg ( vm , arg_log_file ) ;
else
log_path = mlog_get_default_log_path ( default_log_name ) ;
2018-06-01 05:29:26 +02:00
mlog_configure ( log_path , log_to_console , command_line : : get_arg ( vm , arg_max_log_file_size ) , command_line : : get_arg ( vm , arg_max_log_files ) ) ;
2017-10-06 11:55:36 +02:00
if ( ! command_line : : is_arg_defaulted ( vm , arg_log_level ) )
2017-02-26 23:59:46 +01:00
{
mlog_set_log ( command_line : : get_arg ( vm , arg_log_level ) . c_str ( ) ) ;
}
2018-06-06 11:12:45 +02:00
else if ( ! log_to_console )
{
mlog_set_categories ( " " ) ;
}
2017-02-26 23:59:46 +01:00
2017-06-30 18:36:31 +02:00
if ( notice )
2020-04-03 18:30:11 +02:00
Print ( print ) < < notice < < " \n " ;
2017-06-30 18:36:31 +02:00
2017-11-14 10:06:35 +01:00
if ( ! command_line : : is_arg_defaulted ( vm , arg_max_concurrency ) )
2016-11-09 04:55:41 +01:00
tools : : set_max_concurrency ( command_line : : get_arg ( vm , arg_max_concurrency ) ) ;
2018-04-10 06:49:20 +02:00
Print ( print ) < < " Loki ' " < < LOKI_RELEASE_NAME < < " ' (v " < < LOKI_VERSION_FULL < < " ) " ;
2016-11-09 04:55:41 +01:00
2017-10-06 11:55:36 +02:00
if ( ! command_line : : is_arg_defaulted ( vm , arg_log_level ) )
Change logging to easylogging++
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-01 17:34:23 +01:00
MINFO ( " Setting log level = " < < command_line : : get_arg ( vm , arg_log_level ) ) ;
else
2019-07-01 13:52:55 +02:00
{
2020-04-21 04:32:47 +02:00
const char * logs = getenv ( " LOKI_LOGS " ) ;
2019-07-01 13:52:55 +02:00
MINFO ( " Setting log levels = " < < ( logs ? logs : " <default> " ) ) ;
}
Change logging to easylogging++
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-01 17:34:23 +01:00
MINFO ( wallet_args : : tr ( " Logging to: " ) < < log_path ) ;
2017-10-29 00:04:24 +02:00
Print ( print ) < < boost : : format ( wallet_args : : tr ( " Logging to %s " ) ) % log_path ;
2016-11-09 04:55:41 +01:00
2018-11-03 19:32:05 +01:00
const ssize_t lockable_memory = tools : : get_lockable_memory ( ) ;
if ( lockable_memory > = 0 & & lockable_memory < 256 * 4096 ) // 256 pages -> at least 256 secret keys and other such small/medium objects
Print ( print ) < < tr ( " WARNING: You may not have a high enough lockable memory limit " )
# ifdef ELPP_OS_UNIX
< < " , " < < tr ( " see ulimit -l " )
# endif
;
2018-04-15 07:52:53 +02:00
return { std : : move ( vm ) , should_terminate } ;
2016-11-09 04:55:41 +01:00
}
}