diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-13 14:04:09 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-04 11:48:46 +0000 |
commit | a17da7202bcd176a0134ebdaeba6fbce40e745fc (patch) | |
tree | 1c8661ec9349c295b7842a5f1bfc0031eef12788 /src/cryptonote_core | |
parent | blockchain: include number of discarded blocks in --reorg-notify (diff) | |
download | monero-a17da7202bcd176a0134ebdaeba6fbce40e745fc.tar.xz |
Print the reason why a notification spec failed to parse
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 7f25b6851..599f42774 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -601,7 +601,7 @@ namespace cryptonote } catch (const std::exception &e) { - MERROR("Failed to parse block notify spec"); + MERROR("Failed to parse block notify spec: " << e.what()); } try @@ -611,7 +611,7 @@ namespace cryptonote } catch (const std::exception &e) { - MERROR("Failed to parse reorg notify spec"); + MERROR("Failed to parse reorg notify spec: " << e.what()); } try |