Increase log size limit to 10M. The log size is specified in number of bytes, not number of records, and the previous 50k limit was too small to hold any significant amount of data. 10M should be good to hold enough to troubleshoot issues. -- PiperOrigin-RevId: 149660970 MOS_MIGRATED_REVID=149660970
diff --git a/src/main/cpp/startup_options.cc b/src/main/cpp/startup_options.cc index dfa7ae4..414e95d 100644 --- a/src/main/cpp/startup_options.cc +++ b/src/main/cpp/startup_options.cc
@@ -417,7 +417,7 @@ "java.util.logging.FileHandler.pattern=" + java_log + "\n" - "java.util.logging.FileHandler.limit=50000\n" + "java.util.logging.FileHandler.limit=1024000\n" "java.util.logging.FileHandler.count=1\n" "java.util.logging.FileHandler.formatter=" + java_logging_formatter + "\n",