[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r2930: Reduce the default number of messages to retain in the messa (in vidalia/trunk: . src/vidalia/log)



Author: edmanm
Date: 2008-08-03 22:54:18 -0400 (Sun, 03 Aug 2008)
New Revision: 2930

Modified:
   vidalia/trunk/CHANGELOG
   vidalia/trunk/src/vidalia/log/messagelog.cpp
Log:
Reduce the default number of messages to retain in the message log to 50
messages. Most people never look at the window and the extra 200 messages
just needlessly eat memory.


Modified: vidalia/trunk/CHANGELOG
===================================================================
--- vidalia/trunk/CHANGELOG	2008-08-03 22:05:27 UTC (rev 2929)
+++ vidalia/trunk/CHANGELOG	2008-08-04 02:54:18 UTC (rev 2930)
@@ -1,3 +1,9 @@
+0.1.8   xx-xxx-2008
+  o Reduce the default number of messages to retain in the message log to 50
+    messages. Most people never look at the window and the extra 200 messages
+    just needlessly eat memory.
+
+
 0.1.7   02-Aug-2008
   o Handle spaces in the Tor version number we get from 'getinfo version'
     since Tor has included svn revision numbers in its response (e.g.

Modified: vidalia/trunk/src/vidalia/log/messagelog.cpp
===================================================================
--- vidalia/trunk/src/vidalia/log/messagelog.cpp	2008-08-03 22:05:27 UTC (rev 2929)
+++ vidalia/trunk/src/vidalia/log/messagelog.cpp	2008-08-04 02:54:18 UTC (rev 2930)
@@ -32,8 +32,8 @@
 #define SETTING_LOGFILE             "LogFile"
 #define DEFAULT_MSG_FILTER \
   (LogEvent::Error|LogEvent::Warn|LogEvent::Notice)
-#define DEFAULT_MAX_MSG_COUNT       250
-#define DEFAULT_ENABLE_LOGFILE     false
+#define DEFAULT_MAX_MSG_COUNT       50
+#define DEFAULT_ENABLE_LOGFILE      false
 #if defined(Q_OS_WIN32)
 
 /** Default location of the log file to which log messages will be written. */