Removed extraneous logging, ready to merge into master

pull/14/head
Tim Su 14 years ago
parent 55ea028ec7
commit f8a907487f

@ -95,9 +95,6 @@ public class DependencyInjectionService {
Object injection = injector.getInjection(caller, field);
if (injection != null) {
field.set(caller, injection);
Log.e("INJECTION", "injected " + caller.getClass().getSimpleName()
+ "." + field.getName() + " -> " +
injection.toString()); // (debug)
return;
}
}

@ -3,7 +3,6 @@ package com.todoroo.astrid.tags;
import java.util.ArrayList;
import android.content.Context;
import android.util.Log;
import com.todoroo.andlib.data.Property;
import com.todoroo.andlib.data.TodorooCursor;
@ -84,7 +83,6 @@ public class TagService {
array[i] = new Tag();
array[i].tag = cursor.get(Metadata.VALUE);
array[i].count = cursor.get(COUNT);
Log.e("GET GET", "GET " + array[i].tag + " count " + array[i].count);
}
return array;
} finally {

@ -292,7 +292,6 @@ public class Astrid2To3UpgradeHelper {
metadata.setValue(Metadata.TASK, task);
metadata.setValue(Metadata.KEY, TagService.KEY);
metadata.setValue(Metadata.VALUE, tag);
Log.e("PUT PUT", "PUT task " + task + " and tag " + tag);
metadataDao.createItem(metadata);
metadata.clearValue(Metadata.ID);
}

@ -1,7 +1,5 @@
package com.todoroo.astrid.service;
import android.util.Log;
import com.todoroo.andlib.data.Property;
import com.todoroo.andlib.data.TodorooCursor;
import com.todoroo.andlib.data.Property.CountProperty;
@ -73,7 +71,6 @@ public class MetadataService {
Criterion where, Order order) {
Query query = Query.select(Metadata.VALUE.as(Metadata.VALUE.name), count).
where(where).orderBy(order).groupBy(Metadata.VALUE);
Log.e("egads", query.toString());
TodorooCursor<Metadata> cursor = metadataDao.query(query);
return cursor;
}

Loading…
Cancel
Save