From 7145e661033760e8422af9ed162ab3fe262a2f2b Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Sat, 10 Jul 2021 22:29:30 -0700 Subject: [PATCH] :zap: more memory usage info --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 84bed6e..282661d 100644 --- a/main.cpp +++ b/main.cpp @@ -59,7 +59,8 @@ int main(int argc, char **argv) //Loading users from users.json bank.Load(); size_t num_of_logs = bank.NumOfLogs(); - std::cout << "\n\nLoaded " << bank.NumOfUsers() << " Users" + size_t num_of_users = bank.NumOfUsers(); + std::cout << "\n\nLoaded " << num_of_users << " Users : " << (float)(sizeof(User) * num_of_users) / 1048576 << "Mb" << "\nLoaded " << num_of_logs << " Logs : " << (float)(num_of_logs * (90 + 80 + (max_name_size * 2))) / 1048576 << "Mb" //90:string representation(heap), sizeof(Transaction), max_name_size*2:filled to&from(heap) << "\nLoaded " << bank.SumBal() << " CSH" << std::endl; //flushing before EventLoop