Also log pid and tid

This commit is contained in:
topjohnwu 2021-01-16 16:10:47 -08:00
parent 2f5331ab48
commit f5c2d72429
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,6 @@ android.injected.testOnly=false
kapt.incremental.apt=true
# Magisk
magisk.versionCode=21202
magisk.versionCode=21301
magisk.ndkVersion=21d
magisk.fullNdkVersion=21.3.6528147

View File

@ -207,7 +207,7 @@ static int magisk_log(int prio, const char *fmt, va_list ap) {
localtime_r(&tv.tv_sec, &tm);
size_t len = strftime(buf, sizeof(buf), "%m-%d %T", &tm);
int ms = tv.tv_usec / 1000;
len += sprintf(buf + len, ".%03d %c : ", ms, type);
len += sprintf(buf + len, ".%03d %*d %*d %c : ", ms, 5, getpid(), 5, gettid(), type);
strcpy(buf + len, fmt);
return vfprintf(local_log_file.get(), buf, args);
}