changeset 345:8a69b96be376

disabled debug messages
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Thu, 12 Feb 2009 21:15:52 +0800
parents 20b8826655ab
children 9c9d7a59420a b74e3a838b58
files spy.pl
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/spy.pl	Thu Feb 12 21:15:16 2009 +0800
+++ b/spy.pl	Thu Feb 12 21:15:52 2009 +0800
@@ -13,12 +13,11 @@
 # $i->check();
 foreach (glob("city-*-dump.yaml")) {
     my $city = LoadFile($_);
-    # $i->{'cities'}->{$city->{id}} = $city;
     my $spydata = $i->checkSafeHouse($city->{id});
     foreach (keys(%{$spydata})) {
         my $city = Ikariam::Cities->retrieve($_);
-        my $user = $city->user;
-        printf("%s %s\n", $user->name, $city->cityname);
+# my $user = $city->user;
+# printf("%s %s\n", $user->name, $city->cityname);
         DumpFile("spy-$_-dump.yaml", $spydata->{$_});
     }
 }