diff options
author | Jaquee <jaquee.monero@gmail.com> | 2016-11-27 14:44:19 +0100 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2016-11-27 14:44:19 +0100 |
commit | 0059218908ae389601ff90694a854a16ab290215 (patch) | |
tree | 9abd92c75977d9087ec5a250057450eb99b50472 /src | |
parent | Merge pull request #1372 (diff) | |
download | monero-0059218908ae389601ff90694a854a16ab290215.tar.xz |
change 'invalid address format' loglevel
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/cryptonote_basic_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_basic_impl.cpp b/src/cryptonote_core/cryptonote_basic_impl.cpp index 74f44e2af..4f35b8298 100644 --- a/src/cryptonote_core/cryptonote_basic_impl.cpp +++ b/src/cryptonote_core/cryptonote_basic_impl.cpp @@ -199,7 +199,7 @@ namespace cryptonote { uint64_t prefix; if (!tools::base58::decode_addr(str, prefix, data)) { - LOG_PRINT_L1("Invalid address format"); + LOG_PRINT_L2("Invalid address format"); return false; } |