Shutting off my own app's LogCat output before releasing an app to the market is straightforward. I also know how to selectively filter LogCat message by tag and/or id for my own debug convenience.

But now I am interested in something that may be much more difficult (perhaps impossible?): Disable all LogCat output, including & especially those coming from 3rd-party services like TtsService, GoogleLoginService, etc.

Is this possible?

To further clarify: I am not interested in filtering out messages for myself. I am rather interested in disabling 3rd-party messages for whoever downloads my app from the Android Market. Is this possible?

link|improve this question

2  
So you want to prevent any app on the user's device from writing LogCat output? – eldarerathis Apr 5 '11 at 14:07
1  
Do you mean the log messages of those third-party libraries that you include (or use) from your app? – rajath Apr 5 '11 at 14:11
@eldarerathis No, I want to prevent any app that is directly or indirectly being used by my app, from writing LogCat output. Sorry for not being clear enough. – Android Eve Apr 5 '11 at 14:21
@Rajath DSouza Yes, that's exactly what I mean. I don't care about what other apps are showing when they work independently or used by other apps. I only care about them outputing stuff in response to my app's requestes/calls. – Android Eve Apr 5 '11 at 14:23
Okay, that makes more sense... – eldarerathis Apr 5 '11 at 14:42
feedback

2 Answers

up vote 27 down vote accepted

You can use ProGuard to remove completely any lines where a return value is not used, by telling ProGuard to assume that there will be no problems.

The following proguard.cfg chunk instructs to remove Log.d, Log.v and Log.i calls.

-assumenosideeffects class android.util.Log {
    public static *** d(...);
    public static *** v(...);
    public static *** i(...);
}

The end result is that these log lines are not in your release apk, and therefore any user with logcat won't see d/v/i logs.

link|improve this answer
1  
This tip is incredible. It already deserves a +1. I will accept the answer after making sure that it indeed yields the desired result in my app. Thank you! – Android Eve Apr 5 '11 at 14:25
2  
ProGuard is really powerful! You can also use this tip to remove other forms of development code, not just logging. – David Caunt Apr 5 '11 at 14:35
in what other scenarios might we want to remove code? And what forms? – rajath Apr 5 '11 at 14:48
1  
Code that enables developer features, like additional menu options, perhaps. Logging is the only common thing I can think of that you SHOULD remove. – David Caunt Apr 5 '11 at 15:36
I finally got to testing your solution. It works beautifully. :) – Android Eve May 11 '11 at 3:57
show 1 more comment
feedback

if you don't use proguard, you have to manage the log yourself and in the manifest file make dubuggable false

<application
    android:name="MyApplication"
    android:icon="@drawable/gift"
    android:label="@string/app_name" android:debuggable="@bool/build_log">

Here my custom log class

public class Lol {

    public static final boolean ENABLE_LOG = true & MyApplication.sDebug;

    private static final boolean DEBUG = true & ENABLE_LOG;

    private static final boolean VERBOSE = true & ENABLE_LOG;

    private static final boolean TEMP = true & ENABLE_LOG;

    private static final boolean WARNING = true & ENABLE_LOG;

    private static final boolean INFO = true & ENABLE_LOG;

    private static final boolean ERROR = true & ENABLE_LOG;

    public static void obvious(String tag, String msg) {
        if (DEBUG) {
            msg = "*********************************\n" + msg
                    + "\n*********************************";
            Log.d(tag, msg);
        }
    }

    public static void d(String tag, String msg) {
        if (DEBUG)
            Log.d(tag, msg);
    }

    public static void d(boolean bool, String tag, String msg) {
        if (TEMP&bool)
            Log.d(tag, msg);
    }

    public static void i(String tag, String msg) {
        if (INFO)
            Log.i(tag, msg);
    }

    public static void e(String tag, String msg) {
        if (ERROR)
            Log.e(tag, msg);
    }

    public static void e(boolean bool, String tag, String msg) {
        if (TEMP&bool)
            Log.e(tag, msg);
    }

    public static void v(String tag, String msg) {
        if (VERBOSE)
            Log.v(tag, msg);
    }

    public static void w(String tag, String msg) {
        if (WARNING)
            Log.w(tag, msg);
    }

    public static String getStackTraceString(Exception e) {
        return Log.getStackTraceString(e);
    }

    public static void w(String tag, String msg, Exception e) {
        if (WARNING)
            Log.w(tag, msg,e);
    }
}
link|improve this answer
Since SDK Tools 8 it has not been necessary to set the android:debuggable flag manually. This removes the risk of shipping a debuggable release. – David Caunt Apr 18 at 10:44
thanks for the info. – Theo W Htet Apr 18 at 21:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.