Index: common/WorldMap.cpp
===================================================================
--- common/WorldMap.cpp	(revision 7d8d5d314553c3f8ac45350cfd736c8fc86fa779)
+++ common/WorldMap.cpp	(revision d519032c3dacb9a09f64fdf0dce1a3e7f1d1d1a2)
@@ -227,6 +227,6 @@
          if (line.size() > 0)
          {
-            cout << "row: " << row << endl;
-            cout << "line: " << line << endl;
+            //cout << "row: " << row << endl;
+            //cout << "line: " << line << endl;
 
             istringstream iss(line);
@@ -244,7 +244,7 @@
                   type = atoi(token.c_str());
 
-                  cout << "x: " << x << endl;
-                  cout << "token: " << token << endl;
-                  cout << "type: " << type << endl;
+                  //cout << "x: " << x << endl;
+                  //cout << "token: " << token << endl;
+                  //cout << "type: " << type << endl;
 
                   switch(type) {
@@ -269,13 +269,13 @@
 
                getline(iss, token, ',');
-               cout << "token(x): " << token << endl;
+               //cout << "token(x): " << token << endl;
                x = atoi(token.c_str());
 
                getline(iss, token, ',');
-               cout << "token(y): " << token << endl;
+               //cout << "token(y): " << token << endl;
                y = atoi(token.c_str());
 
                getline(iss, token, ',');
-               cout << "token(type): " << token << endl;
+               //cout << "token(type): " << token << endl;
                type = atoi(token.c_str());
 
