mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 15:16:07 +01:00
2019-06-21 Fred Gleason <fredg@paravelsystems.com>
* Added a 'SyslogFacility=' directive to the '[Identity'] section of rd.conf(5). * Added a 'syslog.openlog()' call to the constructor of the 'PyPAD.Receiver' class. * Removed the 'syslog.openlog()' call from the 'pypad_icecast2.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_live365.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_serial.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_shoutcast1.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_spinitron.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_tunein.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_urlwrite.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_walltime.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_xcmd.py' script. * Removed the 'syslog.openlog()' call from the 'pypad_xmpad.py' script.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// A utility for displaying messages on the desktop
|
||||
//
|
||||
// (C) Copyright 2009-2018 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2009-2019 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -29,6 +29,7 @@
|
||||
|
||||
#include <rd.h>
|
||||
#include <rdcmd_switch.h>
|
||||
#include <rdconfig.h>
|
||||
|
||||
#include <rdpopup.h>
|
||||
|
||||
@@ -75,7 +76,9 @@ int main(int argc,char *argv[])
|
||||
//
|
||||
// Open the syslog
|
||||
//
|
||||
openlog("rdpopup",LOG_ODELAY,LOG_USER);
|
||||
RDConfig *config=new RDConfig();
|
||||
config->load();
|
||||
openlog("rdpopup",LOG_ODELAY,config->syslogFacility());
|
||||
|
||||
//
|
||||
// Get Severity Value
|
||||
|
||||
Reference in New Issue
Block a user