Print the reason why a notification spec failed to parse

release-v0.6.1.2
moneromooo-monero 5 years ago
parent 356d813799
commit a17da7202b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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

@ -373,7 +373,7 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl
}
catch (const std::exception &e)
{
MERROR("Failed to parse tx notify spec");
MERROR("Failed to parse tx notify spec: " << e.what());
}
return wallet;

Loading…
Cancel
Save