upping the logging queue size even more
diff --git a/aos/linux_code/logging/linux_logging.cc b/aos/linux_code/logging/linux_logging.cc
index 2f0413b..96d4cbb 100644
--- a/aos/linux_code/logging/linux_logging.cc
+++ b/aos/linux_code/logging/linux_logging.cc
@@ -57,7 +57,7 @@
void Register() {
Init();
- queue = RawQueue::Fetch("LoggingQueue", sizeof(LogMessage), 1323, 20000);
+ queue = RawQueue::Fetch("LoggingQueue", sizeof(LogMessage), 1323, 80000);
if (queue == NULL) {
Die("logging: couldn't fetch queue\n");
}