From: Stefan Kögl Date: Sun, 26 May 2013 10:09:20 +0000 (+0200) Subject: remove unused syslog-support X-Git-Url: https://repo.or.cz/w/mygpo.git/commitdiff_plain/3e7f9b35a22d2bdc70d8df741fe208a29bf2d93b remove unused syslog-support this has already been replaced by standard Python logging --- diff --git a/mygpo/log.py b/mygpo/log.py deleted file mode 100644 index befa43cf..00000000 --- a/mygpo/log.py +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is part of my.gpodder.org. -# -# my.gpodder.org is free software: you can redistribute it and/or modify it -# under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or (at your -# option) any later version. -# -# my.gpodder.org is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public -# License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with my.gpodder.org. If not, see . -# - -# my.gpodder.org logging module - -import syslog - -syslog.openlog('my.gpodder.org') - -def log(message): - syslog.syslog(message)