mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
Print the reason why a notification spec failed to parse
This commit is contained in:
parent
356d813799
commit
a17da7202b
2 changed files with 3 additions and 3 deletions
|
@ -601,7 +601,7 @@ namespace cryptonote
|
||||||
}
|
}
|
||||||
catch (const std::exception &e)
|
catch (const std::exception &e)
|
||||||
{
|
{
|
||||||
MERROR("Failed to parse block notify spec");
|
MERROR("Failed to parse block notify spec: " << e.what());
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -611,7 +611,7 @@ namespace cryptonote
|
||||||
}
|
}
|
||||||
catch (const std::exception &e)
|
catch (const std::exception &e)
|
||||||
{
|
{
|
||||||
MERROR("Failed to parse reorg notify spec");
|
MERROR("Failed to parse reorg notify spec: " << e.what());
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|
|
@ -373,7 +373,7 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl
|
||||||
}
|
}
|
||||||
catch (const std::exception &e)
|
catch (const std::exception &e)
|
||||||
{
|
{
|
||||||
MERROR("Failed to parse tx notify spec");
|
MERROR("Failed to parse tx notify spec: " << e.what());
|
||||||
}
|
}
|
||||||
|
|
||||||
return wallet;
|
return wallet;
|
||||||
|
|
Loading…
Reference in a new issue