0

アプリの起動時に、logcat をコード内のファイルにリダイレクトしました。しかし、アプリケーションを再起動すると、リダイレクト コードが再度実行され、その結果、ログの各行が 2 回書き込まれます。

コマンドを実行して、親プロセスが終了したときに子プロセスが終了するようにするにはどうすればよいですか?

String.format("logcat -f %s -r %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB);    
Runtime.getRuntime().exec(cmd);

アプリの logcat が 1 回だけリダイレクトされるようにするにはどうすればよいですか? (他のアプリが logcat を呼び出して、それを独自のファイルにリダイレクトするとどうなりますか?その場合、チェックは引き続き機能しますか?)

ありがとう!

4

3 に答える 3

1

LogCatをデバッグ目的でのみ使用する場合は、これを読むことをお勧めします。

LogCatをアクティブ化した後、EclipseでLogCat-Viewを開くと、すべてのLogCat-Outputが表示されるため、最初にファイルに書き込む必要はありません。

于 2011-06-19T12:16:54.127 に答える
1

2 つのオプション:
a) Logcat が既にリダイレクトされたかどうかの情報を含む静的グローバル変数を作成します。
b) sdcard またはアプリ ディレクトリ (xml またはプロパティ ファイル) に、LogCat が既にリダイレクトされたという情報を含むファイルを作成します。

于 2011-06-19T12:50:44.557 に答える
-1
/** Redirects the log output to the SDCard.
 *  
 * make sure your app has the WRITE_EXTERNAL_STORAGE and READ_LOGS permissions - 
 *  or it won't allow it to read logs and write them to the sdcard.
 *  If the application doesn't have the permissions, there will be no exception
 *  and the program will continue regularly.
 */
public static void redirectOutputToFile()
{
    s_enableLogs = true;

    if (s_logcatProcess != null)
    {
        Logger log = new Logger("Logger");  

        log.info("redirectOutputToFile() called more then once, perhaps from service onCreate and onStart.");

        return;
    }

    try 
    {
        String path = Environment.getExternalStorageDirectory() + LOG_FILE_NAME;
        File filename = new File(path);

        filename.createNewFile();

        //http://www.linuxtopia.org/online_books/android/devguide/guide/developing/tools/android_adb_logcatoptions.html
        String cmd = String.format("logcat -v time -f %s -r %d -n %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB, LOG_FILE_ROTATIONS);    

        s_logcatProcess = Runtime.getRuntime().exec(cmd);
    } 
    catch (IOException e) 
    {       
        Logger log = new Logger("Logger");
        log.exception(e);
    }
}

/** Kills the logcat process that was created in the redirectOutputToFile() method. */
public static void killLogcatProcess()
{
    // first update the log mode state
    s_enableLogs = false;

    if (s_logcatProcess != null)
    {
        s_logcatProcess.destroy();
        s_logcatProcess = null;
    }
}
于 2011-07-20T11:49:19.450 に答える