diff --git a/astrid/common-src/com/todoroo/andlib/service/DependencyInjectionService.java b/astrid/common-src/com/todoroo/andlib/service/DependencyInjectionService.java index 2d0094a10..f347bd371 100644 --- a/astrid/common-src/com/todoroo/andlib/service/DependencyInjectionService.java +++ b/astrid/common-src/com/todoroo/andlib/service/DependencyInjectionService.java @@ -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; } } diff --git a/astrid/plugin-src/com/todoroo/astrid/tags/TagService.java b/astrid/plugin-src/com/todoroo/astrid/tags/TagService.java index 42b49e979..5ec0969a3 100644 --- a/astrid/plugin-src/com/todoroo/astrid/tags/TagService.java +++ b/astrid/plugin-src/com/todoroo/astrid/tags/TagService.java @@ -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 { diff --git a/astrid/src/com/todoroo/astrid/service/Astrid2To3UpgradeHelper.java b/astrid/src/com/todoroo/astrid/service/Astrid2To3UpgradeHelper.java index 356ad04a1..53ea765b2 100644 --- a/astrid/src/com/todoroo/astrid/service/Astrid2To3UpgradeHelper.java +++ b/astrid/src/com/todoroo/astrid/service/Astrid2To3UpgradeHelper.java @@ -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); } diff --git a/astrid/src/com/todoroo/astrid/service/MetadataService.java b/astrid/src/com/todoroo/astrid/service/MetadataService.java index 258a7f903..3e1d6373f 100644 --- a/astrid/src/com/todoroo/astrid/service/MetadataService.java +++ b/astrid/src/com/todoroo/astrid/service/MetadataService.java @@ -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 cursor = metadataDao.query(query); return cursor; }