Author: alexlehm
Date: 2008-05-20 21:06:30 +0000 (Tue, 20 May 2008)
New Revision: 19978
Modified:
trunk/apps/Freemail/src/freemail/SingleAccountWatcher.java
Log:
log the different stages (logged as DEBUG, unless you are developing Freemail
you will never see this)
Modified: trunk/apps/Freemail/src/freemail/SingleAccountWatcher.java
===================================================================
--- trunk/apps/Freemail/src/freemail/SingleAccountWatcher.java 2008-05-20
20:58:03 UTC (rev 19977)
+++ trunk/apps/Freemail/src/freemail/SingleAccountWatcher.java 2008-05-20
21:06:30 UTC (rev 19978)
@@ -117,6 +117,7 @@
break;
}
// send any messages queued in contact outboxes
+ Logger.debug(this, "sending any message in
contact outboxes");
File[] obcontacts = this.obctdir.listFiles(new
outboundContactFilenameFilter());
if (obcontacts != null) {
int i;
@@ -129,6 +130,7 @@
}
}
}
+ Logger.debug(this, "polling rts");
if (this.nf != null) {
nf.fetch();
}
@@ -138,6 +140,7 @@
}
// poll for incoming message from all inbound
contacts
+ Logger.debug(this, "polling for incoming
message from all inbound contacts");
File[] ibcontacts = this.ibctdir.listFiles(new
inboundContactFilenameFilter());
if (ibcontacts != null) {
int i;