Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0ef1394 authored by Daichi Hirono's avatar Daichi Hirono
Browse files

Remove LOG_NDEBUG 0 from AppFuse JNI.

"LOG_NDEBUG 0" enforces to output verbose log even for release build.

Change-Id: I9ab2f5b86065d360222cbabc8d6be2431b06d785
Fix: 28055420
parent 75aee0a6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@
 * limitations under the License.
 */

#define LOG_NDEBUG 0
#define LOG_TAG "AppFuseJNI"
#include "utils/Log.h"

@@ -451,7 +450,7 @@ jboolean com_android_mtp_AppFuse_start_app_fuse_loop(
    ScopedFd fd(static_cast<int>(jfd));
    AppFuse appfuse(env, self);

    ALOGD("Start fuse loop.");
    ALOGV("Start fuse loop.");
    while (true) {
        FuseRequest request;