Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision e0fd377b350d009cfac206e06ac951cc9b9dd4c9)
+++ client/Client/main.cpp	(revision 257de75b0c9ffcff18039fd5f1a86d7d5ea73f27)
@@ -599,17 +599,8 @@
             }
          }else if (wndCurrent == wndGameSummary) {
-            cout << "Drawing game summary" << endl;
-
-            cout << "blue score from obj: " << gameSummary->getBlueScore() << endl;
-            cout << "red score from obj: " << gameSummary->getRedScore() << endl;
-
             ostringstream ossBlueScore, ossRedScore;
-
-            cout << "Declared scores" << endl;
 
             ossBlueScore << "Blue Score: " << gameSummary->getBlueScore();
             ossRedScore << "Red Score: " << gameSummary->getRedScore();
-
-            cout << "set scores" << endl;
 
             string strWinner;
@@ -622,12 +613,8 @@
                strWinner = "winner set to wrong value";
 
-            cout << "Calling the drawing routines" << endl;
-
             al_draw_text(font, al_map_rgb(0, 255, 0), 512, 40, ALLEGRO_ALIGN_CENTRE, gameSummary->getName().c_str());
             al_draw_text(font, al_map_rgb(0, 255, 0), 330, 80, ALLEGRO_ALIGN_LEFT, ossBlueScore.str().c_str());
             al_draw_text(font, al_map_rgb(0, 255, 0), 515, 80, ALLEGRO_ALIGN_LEFT, ossRedScore.str().c_str());
             al_draw_text(font, al_map_rgb(0, 255, 0), 512, 120, ALLEGRO_ALIGN_CENTRE, strWinner.c_str());
-
-            cout << "Done drawing game summary" << endl;
          }
 
