From: kenstir Date: Mon, 12 Oct 2015 22:28:23 +0000 (-0400) Subject: * tone down the debug logging X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=649e491b0ce57147128363846f4ae036baf83884;p=working%2FEvergreen.git * tone down the debug logging --- diff --git a/Open-ILS/src/Android/core/src/org/evergreen_ils/searchCatalog/SearchCatalogListView.java b/Open-ILS/src/Android/core/src/org/evergreen_ils/searchCatalog/SearchCatalogListView.java index c476c6c2e9..ae9e55907f 100644 --- a/Open-ILS/src/Android/core/src/org/evergreen_ils/searchCatalog/SearchCatalogListView.java +++ b/Open-ILS/src/Android/core/src/org/evergreen_ils/searchCatalog/SearchCatalogListView.java @@ -728,7 +728,7 @@ public class SearchCatalogListView extends ActionBarActivity { // Get reference to ImageView recordImage = (ImageView) row.findViewById(R.id.search_record_img); String imageHref = GlobalConfigs.httpAddress + "/opac/extras/ac/jacket/small/r/" + record.image; - Log.d(TAG, "image url " + imageHref); + //Log.d(TAG, "image url " + imageHref); // start async download of image imageDownloader.download(imageHref, recordImage); @@ -740,8 +740,7 @@ public class SearchCatalogListView extends ActionBarActivity { // set text recordTitle.setText(record.title); recordAuthor.setText(record.author); - recordPublisher - .setText(record.pubdate + " " + record.publisher); + recordPublisher.setText(record.pubdate + " " + record.publisher); return row; }