1
0
mirror of https://github.com/mik3y/usb-serial-for-android synced 2025-06-07 16:06:10 +00:00

Debug mode disable

Ability to disable DEBUG Logging for in/out bytes.
This commit is contained in:
Ilja 2020-12-16 14:24:43 +02:00 committed by GitHub
parent 6b7d358f1f
commit 911cf96ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ import java.nio.ByteBuffer;
public class SerialInputOutputManager implements Runnable {
private static final String TAG = SerialInputOutputManager.class.getSimpleName();
private static final boolean DEBUG = true;
public static boolean DEBUG = false;
private static final int BUFSIZ = 4096;
/**