I am having lots of logging statements to debug for example.

Log.v(TAG, "Message here");
Log.w(TAG, " WARNING HERE");

while deploying this application on device phone i want to turn off the verbose logging from where i can enable/disable logging.

link|improve this question

feedback

7 Answers

up vote 22 down vote accepted

Common way is make a int named loglevel, and you can define it's debug level based on loglevel .

public static int LOGLEVEL = 1;
public static boolean WARN = LOGLEVEL > 1;
public static boolean DEBUG = LOGLEVEL > 0;
...
    if (DEBUG) Log.v(TAG, "Message here");
    if (WARN) Log.w(TAG, "WARNING HERE");

Later, you can just change the LOGLEVEL for all debug output level.

link|improve this answer
nice, but how would you disable DEBUG in your example, but still showing warnings.... – Andre Bossard Jan 30 at 15:01
feedback

The Android Documentation says the following about Log Levels:

Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.

So you may want to consider stripping the log Verbose logging statements out, possibly using ProGuard as suggested in another answer.

According to the documentation you can configure logging on a development device using System Properties. The property to set is log.tag.<YourTag> and it should be set to one of the following values: VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. More information on this is available in the documentation for the isLoggable() method.

You can set properties temporarily using the setprop command. For example:

C:\android>adb shell setprop log.tag.MyAppTag WARN
C:\android>adb shell getprop log.tag.MyAppTag
WARN

Alternatively, you can specify them in the file '/data/local.prop' as follows:

log.tag.MyAppTag=WARN

This file as read at boot time so you'll need to restart after updating it.

Finally, you can set them programmatically using the System.setProperty() method.

However, I've been unable to get these log settings working as documented. I'd be interested to hear if you have any more luck than me.

link|improve this answer
2  
I've had the same experience; the API docs are pretty unclear about exactly how this should work and even seem to mention most of the android.util.Config constants being deprecated. The hardcoded values specified in the API docs are useless as these (supposedly) vary by build. Hence the ProGuard route seemed the best solution for us. – Christopher Jan 7 '10 at 11:20
1  
Have you had any luck in configuring Android logging using either the /data/local.prop file, the setprop method or with a System.setProperty? I'm having quite a bit of trouble getting a Log.isLoggable(TAG, VERBOSE) to return true for me. – seanoshea Feb 12 '11 at 20:16
1  
I've gotten android debugging working. The trick is that when you call something like Log.d("xyz") the message is written to logcat even if debug is disabled for the logger. This means filtering generally happens after being written. In order to filter before something like Log.isLoggable(TAG, Log.VERBOSE)) { Log.v(TAG, "my log message"); } is needed. This is generally pretty tiresome. I use a modified version of slf4j-android to get what I want. – phreed Mar 1 '11 at 17:34
See AndroidHandler code. You can simply use java.util.logging.Logger which will use the android.util.Log class to print the output and add the appropriate isLoggable() calls automatically. – Christian Gawron Jun 22 '11 at 20:03
@Dave were you ever able to get the local.prop method working correctly. I am also unable to make this work, I have created an entry log.tag.test=INFO and then tried to change it running setprop log.tag.test SUPPRESS from the adb shell and it doesn't change anything. Also using System.getProperty and System.setProperty does nothing. Wanted to get an update from you. Thanks. – jjNford Feb 14 at 22:06
show 2 more comments
feedback

The easiest way is probably to run your compiled JAR through ProGuard before deployment, with a config like:

-assumenosideeffects class android.util.Log {
    public static int v(...);
}

That will — aside from all the other ProGuard optimisations — remove any verbose log statements directly from the bytecode.

link|improve this answer
do it contains any log.property file where we can define settings. – Faisal khan Jan 7 '10 at 8:17
stripping out lines with proguard means that your stack traces from production may not line up with your code. – larham1 Oct 20 '11 at 19:14
2  
@larham1: ProGuard acts on the bytecode, so I would imagine removing the logging calls wouldn't alter the embedded line number metadata. – Christopher Oct 26 '11 at 16:13
@Christopher I saw line numbers not match up. I'm talking about the line numbering, not the function names. Please try it. – larham1 Nov 10 '11 at 7:40
feedback

I took a simple route - creating a wrapper class that also makes use of variable paramter lists.

 public class Log{
        public static int LEVEL = android.util.Log.WARN;


    static public void d(String tag, String msgFormat, Object...args)
    {
        if (LEVEL<=android.util.Log.DEBUG)
        {
            android.util.Log.d(tag, String.format(msgFormat, args));
        }
    }

    static public void d(String tag, Throwable t, String msgFormat, Object...args)
    {
        if (LEVEL<=android.util.Log.DEBUG)
        {
            android.util.Log.d(tag, String.format(msgFormat, args), t);
        }
    }

    //...other level logging functions snipped
link|improve this answer
1  
As I mentioned above. I have used a modified version of slf4j-android to implement this technique. – phreed Mar 1 '11 at 17:36
feedback

You should use

    if (Log.isLoggable(TAG, Log.VERBOSE)) {
        Log.v(TAG, "my log message");
    }
link|improve this answer
feedback

Stripping out the logging with proguard (see answer from @Christopher ) was easy and fast, but it caused stack traces from production to mismatch the source if there was any debug logging in the file.

Instead, here's a technique that uses different logging levels in development vs. production, assuming that proguard is used only in production. It recognizes production by seeing if proguard has renamed a given class name (in the example, I use "com.foo.Bar"--you would replace this with a fully-qualified class name that you know will be renamed by proguard).

This technique makes use of commons logging.

    private void initLogging() {
    Level level = Level.WARNING;
    try {
        // in production, the shrinker/obfuscator proguard will change the name of this class (and many others)
        // so in development, this class WILL exist as named, and we will have debug level
        Class.forName("com.foo.Bar");
        level = Level.FINE;
    } catch (Throwable t) {
        // no problem, we are in production mode
    }
    Handler[] handlers = Logger.getLogger("").getHandlers();
    for (Handler handler : handlers) {
        Log.d("log init", "handler: " + handler.getClass().getName());
        handler.setLevel(level);
    }
}
link|improve this answer
feedback

Log4j or slf4j can also be used as logging frameworks in Android together with logcat. See the project android-logging-log4j or log4j support in android

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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