Wallet API: allow log path to be non-default & console output to be configurable

This commit is contained in:
stoffu 2018-05-02 11:46:46 +09:00
parent 6b9d9f56a1
commit b13bddc3c9
No known key found for this signature in database
GPG key ID: 41DAB8343A9EC012
2 changed files with 4 additions and 3 deletions

View file

@ -556,7 +556,8 @@ struct Wallet
}
static uint64_t maximumAllowedAmount();
// Easylogger wrapper
static void init(const char *argv0, const char *default_log_base_name);
static void init(const char *argv0, const char *default_log_base_name) { init(argv0, default_log_base_name, "", true); }
static void init(const char *argv0, const char *default_log_base_name, const std::string &log_path, bool console);
static void debug(const std::string &category, const std::string &str);
static void info(const std::string &category, const std::string &str);
static void warning(const std::string &category, const std::string &str);