[vlc-commits] macosx: increase maximum number of messages for the messages panel
David Fuhrmann
git at videolan.org
Wed Feb 12 16:33:12 CET 2014
vlc | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Wed Feb 12 16:30:43 2014 +0100| [afd8ee691632e91e8541ebc06874f62c512ff63b] | committer: David Fuhrmann
macosx: increase maximum number of messages for the messages panel
This is needed to a complete log as some modules like mkv are very
verbose. The actual size is not so critical anymore as messages
are only arriving if the panel is open.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=afd8ee691632e91e8541ebc06874f62c512ff63b
---
modules/gui/macosx/DebugMessageVisualizer.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/macosx/DebugMessageVisualizer.m b/modules/gui/macosx/DebugMessageVisualizer.m
index c7c796d..5fdeaaf 100644
--- a/modules/gui/macosx/DebugMessageVisualizer.m
+++ b/modules/gui/macosx/DebugMessageVisualizer.m
@@ -201,7 +201,7 @@ static VLCDebugMessageVisualizer *_sharedMainInstance = nil;
[_msg_lock lock];
- if ([_msg_arr count] > 600) {
+ if ([_msg_arr count] > 10000) {
[_msg_arr removeObjectAtIndex: 0];
[_msg_arr removeObjectAtIndex: 1];
}
More information about the vlc-commits
mailing list