Merge "Pass SearchView suggestion cursor exception to Log."

This commit is contained in:
Romain Guy
2012-07-06 23:18:18 -07:00
committed by android code review

View File

@@ -1521,8 +1521,8 @@ public class SearchView extends LinearLayout implements CollapsibleActionView {
} catch (RuntimeException e2 ) { } catch (RuntimeException e2 ) {
rowNum = -1; rowNum = -1;
} }
Log.w(LOG_TAG, "Search Suggestions cursor at row " + rowNum + Log.w(LOG_TAG, "Search suggestions cursor at row " + rowNum +
" returned exception" + e.toString()); " returned exception.", e);
return null; return null;
} }
} }