FileDocCategorySizeDatePackage
DebugService.javaAPI DocAndroid 5.1 API1598Thu Mar 12 22:22:54 GMT 2015com.android.internal.telephony

DebugService

public class DebugService extends Object
A debug service that will dump telephony's state Currently this "Service" has a proxy in the phone app com.android.phone.TelephonyDebugService which actually invokes the dump method.

Fields Summary
private static String
TAG
Constructors Summary
public DebugService()
Constructor


      
      
        log("DebugService:");
    
Methods Summary
public voiddump(java.io.FileDescriptor fd, java.io.PrintWriter pw, java.lang.String[] args)
Dump the state of various objects, add calls to other objects as desired.

        log("dump: +");
        PhoneFactory.dump(fd, pw, args);
        log("dump: -");
    
private static voidlog(java.lang.String s)

        Rlog.d(TAG, "DebugService " + s);