From 14462e6b169feff9e3ca280df69bb139eb322611 Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 22 Jan 2022 20:33:24 +0100 Subject: [PATCH] chore(pool): rm unimportant print statements --- pool.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pool.cpp b/pool.cpp index 07a4dcf..ae0fbd6 100644 --- a/pool.cpp +++ b/pool.cpp @@ -23,9 +23,7 @@ auto Pool::get_id() const noexcept -> unsigned int { } auto Pool::initialize_pool(const unsigned int& id) -> void { - fmt::print("\tpool init: {}\n", id); set_id(id); - fmt::print("\tid set to: {}\n", this->get_id()); } auto Pool::add_entropy(const unsigned int& source, @@ -63,15 +61,12 @@ auto Pool::add_entropy(const unsigned int& source, fmt::print("{}\n", e.what()); throw; } - fmt::print("\tall_ok: {}\n", all_ok); if (all_ok) { try { // FIXME: check for overflow - std::string size bounding? event_str.assign(event.begin(), event.end()); - fmt::print("\tevent_str length: {}\n", event_str.length()); - // FIXME: check size for overflow // also, atm this counts event size but actually what gets appended // are digests of 64 characters (hex-encoded 32 bytes)