Documentation

Go to Portal Website

Prevent All Debug Logs

Prevent All Debug Logs is an Android hardening control that suppresses logging output produced by the protected app process. It combines a build-time pass over the host app's bytecode with a runtime suppression layer that silences logging from any code loaded into the app at runtime.

Use this control when:

How It Works

Prevent All Debug Logs operates in two layers:

Logs emitted by other processes on the device — including the operating system, other apps, separate isolated services, or external accessory firmware — are outside the app process and are not affected by this control.

How to Enable the Control

Navigate to Code Obfuscation from the AppTego portal, and expand the Metadata Reduction section. Under this section you will find the Prevent All Debug Logs control. Click Enable to include it in the next protected Android build.

API Configuration Example

{
  "PreventAllDebugLogs": {
    "protection": true
  }
}

Compatibility Notes