1
mirror of https://github.com/topjohnwu/Magisk synced 2024-10-02 01:14:52 +02:00

Preserve last log

This commit is contained in:
topjohnwu 2018-06-17 01:38:58 +08:00
parent d08fd0561a
commit 9b41976252

View File

@ -106,6 +106,7 @@ static void *logger_thread(void *args) {
}
static void *magisk_log_thread(void *args) {
rename(LOGFILE, LOGFILE ".bak");
FILE *log = xfopen(LOGFILE, "w");
setbuf(log, NULL);
int pipefd[2];