mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 20:31:16 +00:00
Increase max length of log file to 10k lines
This commit is contained in:
parent
b5d2ad93a5
commit
1be1fbc1fe
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ public class SyncthingRunnable implements Runnable {
|
|||
private static final String TAG_KILL = "SyncthingRunnableKill";
|
||||
public static final String UNIT_TEST_PATH = "was running";
|
||||
public static final String BINARY_NAME = "libsyncthing.so";
|
||||
private static final int LOG_FILE_MAX_LINES = 1000;
|
||||
private static final int LOG_FILE_MAX_LINES = 10000;
|
||||
|
||||
private static final AtomicReference<Process> mSyncthing = new AtomicReference<>();
|
||||
private final Context mContext;
|
||||
|
|
Loading…
Reference in a new issue