Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision b35b2b25df5c3c0e8e63e6f9c60d145b6996c085)
+++ client/Client/main.cpp	(revision f9cb9fb6fdacb1a49b3026e84a4faeec1a0405ca)
@@ -20,4 +20,5 @@
 #include <iostream>
 #include <sstream>
+#include <fstream>
 #include <map>
 
@@ -126,4 +127,5 @@
    bool fullscreen = false;
    debugging = false;
+   ofstream outputLog;
 
    scoreBlue = 0;
@@ -136,4 +138,7 @@
       return -1;
    }
+
+   outputLog.open("client.log", ios::app);
+   outputLog << "Started client on " << getCurrentDateTimeString() << endl;
 
    if (al_init_primitives_addon())
@@ -496,5 +501,8 @@
    al_destroy_display(display);
    al_destroy_timer(timer);
- 
+
+   outputLog << "Stopped client on " << getCurrentDateTimeString() << endl;
+   outputLog.close();
+
    return 0;
 }
