Android で、1 つのクラスからすべての Log.d を収集し、追加し続けて SDCard に保存することは可能ですか?
例えば :
Class Android {
private final static String TAG = "hello";
public void abcd(){
Log.d(TAG, "it went into abcd method");
}
public void efgh(){
Log.d(TAG, "it went into efgh method");
}
/*Here collect all above LOGS and write to file in SDCard*/
}