diff --git a/contrib/epee/include/static_helpers.h b/contrib/epee/include/static_helpers.h index bba92d51..d3c11c83 100644 --- a/contrib/epee/include/static_helpers.h +++ b/contrib/epee/include/static_helpers.h @@ -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(); } diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index 26459184..48f7b5c0 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -891,7 +891,6 @@ std::string wallets_manager::generate_wallet(const std::wstring& path, const std #else LOG_ERROR("Unexpected location reached"); #endif - } try