From a49447346d31c1b8d5331fb737da00caab93b862 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Wed, 30 Dec 2009 14:57:38 +0100 Subject: [PATCH] macosx/framework: Use syslog facilities. --- projects/macosx/framework/Sources/VLCLibrary.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/macosx/framework/Sources/VLCLibrary.m b/projects/macosx/framework/Sources/VLCLibrary.m index ec2f5b9cc5..e2a1192479 100644 --- a/projects/macosx/framework/Sources/VLCLibrary.m +++ b/projects/macosx/framework/Sources/VLCLibrary.m @@ -76,7 +76,9 @@ void __catch_exception( void * e, const char * function, const char * file, int [defaultParams addObject:@"--ignore-config"]; // Don't read and write VLC config files [defaultParams addObject:@"--vout=macosx"]; [defaultParams addObject:@"--text-renderer=quartztext"]; // our CoreText-based renderer - [defaultParams addObject:@"--verbose=-1"]; // Don't polute the log + [defaultParams addObject:@"--verbose=-1"]; // Don't polute the stdio log + [defaultParams addObject:@"--syslog"]; // log to syslog + [defaultParams addObject:@"--log-verbose=4"]; // log everything [defaultParams addObject:@"--no-color"]; [defaultParams addObject:@"--no-media-library"]; [defaultParams addObject:@"--play-and-pause"]; -- 2.39.2