Fix debug message

This commit is contained in:
topjohnwu 2017-08-01 01:24:27 +08:00
parent 7058c8ff5a
commit 10c8ea17aa

View File

@ -280,7 +280,7 @@ int mkdir_p(const char *pathname, mode_t mode) {
int bind_mount(const char *from, const char *to) {
int ret = xmount(from, to, NULL, MS_BIND, NULL);
#ifdef DEBUG
#ifdef MAGISK_DEBUG
LOGD("bind_mount: %s -> %s\n", from, to);
#else
LOGI("bind_mount: %s\n", to);