I have written two apps. One is used to create data and store in a database, the other is used to display information from the first app's database. I need these two to be separate apps. The second app that displays the information has to make multiple calls to the first app's database. It's all working fine and well, but I can't close the database in the first app's content provider. I've read at Closing the database in a ContentProvider that I'm not supposed to which is fine. The problem is as I'm working on the second app, Eclipse's Logcat is just flooded with unclosed database messages. One message per query and I'm making multiple queries at a time.
Finally the question: Is there a way to either setup Eclipse to not display this certain error message, or filter the message out of the logcat?
Thanks TJ