store message bodies up to 1MB
This commit is contained in:
parent
001da15a33
commit
c85b487fca
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ public final class Config {
|
|||
public static final boolean PUT_AUTH_TAG_INTO_KEY = true;
|
||||
|
||||
public static final int MAX_DISPLAY_MESSAGE_CHARS = 4096;
|
||||
public static final int MAX_STORAGE_MESSAGE_CHARS = 1024 * 1024 * 1024;
|
||||
public static final int MAX_STORAGE_MESSAGE_CHARS = 1024 * 1024; //1MB
|
||||
|
||||
public static final boolean ExportLogs = true; // automatically export logs
|
||||
public static final int ExportLogs_Hour = 4; //Time - hours: valid values from 0 to 23
|
||||
|
|
Reference in a new issue