1
0
Fork 0
forked from lthn/blockchain

got rid of console messages

This commit is contained in:
cryptozoidberg 2020-05-22 14:36:25 +02:00
parent 07a1cde8f9
commit 034e4e0296
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC
2 changed files with 1 additions and 4 deletions

View file

@ -73,12 +73,11 @@ namespace epee
}
if (!deinit_called)
{
std::cout << "[ENTERING DESTROY CALLBACK]: " << std::endl;
if (static_destroy_handler)
static_destroy_handler();
deinit_called = true;
std::cout << "[DESTROY CALLBACK FINISHED]: " << std::endl;
}
return true;
@ -89,7 +88,6 @@ namespace epee
{
~wrapper()
{
std::cout << "[DESTROYING STATIC]: " << typeid(t_base).name() << std::endl;
set_or_call_on_destruct();
}

View file

@ -891,7 +891,6 @@ std::string wallets_manager::generate_wallet(const std::wstring& path, const std
#else
LOG_ERROR("Unexpected location reached");
#endif
}
try