From 0a919a07c8bad34a3063de5cf1e261bc16f9ff7f Mon Sep 17 00:00:00 2001 From: William Katz Date: Wed, 12 May 2021 18:03:40 -0700 Subject: [PATCH] :fire: removed legacy logging --- include/bank.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/bank.hpp b/include/bank.hpp index bcc69f3..a386414 100644 --- a/include/bank.hpp +++ b/include/bank.hpp @@ -107,7 +107,6 @@ public: { Transaction temp(a_name, b_name, amount); Transaction temp2 = temp; - std::cout << temp.from << ' ' << temp.to << '\n'; users.modify_if(a_name, [&temp](User &a) { a.log.AddTrans(std::move(temp)); });