浏览代码

macosx/framework: Bring back default logging value to -1.

We could probably expose some function to let the client change that on the fly as well. And/Or fix the logging API.
Pierre d'Herbemont 15 年之前
父节点
当前提交
dd0564a9b1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Sources/VLCLibrary.m

+ 1 - 1
Sources/VLCLibrary.m

@@ -77,7 +77,7 @@ void __catch_exception( void * e, const char * function, const char * file, int
             [defaultParams addObject:@"--opengl-provider=minimal_macosx"];          // Use minimal_macosx
             [defaultParams addObject:@"--vout=minimal_macosx"];
             [defaultParams addObject:@"--text-renderer=quartztext"];                // our CoreText-based renderer
-            [defaultParams addObject:@"--verbose=2"];                               // Don't polute the log
+            [defaultParams addObject:@"--verbose=-1"];                               // Don't polute the log
             [defaultParams addObject:@"--no-color"];
             [defaultParams addObject:@"--no-media-library"];
             vlcParams = defaultParams;