]> git.sesse.net Git - vlc/blob - modules/misc/logger.c
15e230954db7d71de47627b08c5769c93166f9ea
[vlc] / modules / misc / logger.c
1 /*****************************************************************************
2  * logger.c : file logging plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_interface.h>
35
36 #include <stdarg.h>
37
38 /*****************************************************************************
39  * Local prototypes
40  *****************************************************************************/
41 static int  Open    ( vlc_object_t * );
42 static void Close   ( vlc_object_t * );
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 vlc_module_begin ()
48     set_shortname( N_( "Logging" ) )
49     set_description( N_("File logging") )
50
51     set_category( CAT_ADVANCED )
52     set_subcategory( SUBCAT_ADVANCED_MISC )
53
54     add_obsolete_string( "rrd-file" )
55
56     set_capability( "interface", 0 )
57     set_callbacks( Open, Close )
58 vlc_module_end ()
59
60 /*****************************************************************************
61  * Open: initialize and create stuff
62  *****************************************************************************/
63 static int Open( vlc_object_t *p_this )
64 {
65     intf_thread_t *p_intf = (intf_thread_t *)p_this;
66
67     msg_Err( p_intf, "The logger interface no longer exists." );
68     msg_Info( p_intf, "As of VLC version 0.9.0, use --file-logging to write "
69               "logs to a file." );
70 # ifndef _WIN32
71     msg_Info( p_intf, "Use --syslog to send logs to the system logger." );
72 # endif
73     return VLC_EGENERIC;
74 }
75
76 /*****************************************************************************
77  * Close: destroy interface stuff
78  *****************************************************************************/
79 static void Close( vlc_object_t *p_this )
80 {
81     /* Flush the queue and unsubscribe from the message queue */
82     vlc_LogSet( p_this->p_libvlc, NULL, NULL );
83 }