From 3ebda9b06a6a17a96e4016c4e2c1c7889b4359f7 Mon Sep 17 00:00:00 2001 From: phintuka Date: Sat, 15 Nov 2008 13:52:25 +0000 Subject: Added verbose debug logging (can be enabled with command-line option -vv or --verbose --verbose) --- xine_frontend_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xine_frontend_main.c b/xine_frontend_main.c index 3bc6d686..5f767560 100644 --- a/xine_frontend_main.c +++ b/xine_frontend_main.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend_main.c,v 1.59 2008-11-13 23:29:41 phintuka Exp $ + * $Id: xine_frontend_main.c,v 1.60 2008-11-15 13:52:25 phintuka Exp $ * */ @@ -33,7 +33,7 @@ #include "xine_frontend_lirc.h" /* next symbol is dynamically linked from input plugin */ -int SysLogLevel __attribute__((visibility("default"))) = 2; /* errors and info, no debug */ +int SysLogLevel __attribute__((visibility("default"))) = SYSLOGLEVEL_INFO; /* errors and info, no debug */ /* static data */ @@ -443,7 +443,7 @@ int main(int argc, char *argv[]) PRINTF("LIRC device: %s%s\n", lirc_dev, repeat_emu?", emulating key repeat":""); break; - case 'v': SysLogLevel = 3; + case 'v': SysLogLevel = (SysLogLevel