1
0
Fork 0
forked from len0rd/rockbox

Android: Slightly rework logging to logcat by offloading duplicated code to a new helper class.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30161 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2011-07-18 21:26:03 +00:00
parent 33de9cdaef
commit 02b2b285d6
5 changed files with 6 additions and 35 deletions

View file

@ -40,16 +40,6 @@ public class RunForegroundManager
initForegroundCompat();
}
private void LOG(CharSequence text)
{
Log.d("Rockbox", (String)text);
}
private void LOG(CharSequence text, Throwable tr)
{
Log.d("Rockbox", (String)text, tr);
}
public void startForeground()
{
startForegroundCompat(R.string.notification, mNotification);