Started output_log plugin

This commit is contained in:
2009-11-25 15:12:09 +00:00
parent 04a1a72090
commit 5953ce7686
2 changed files with 18 additions and 0 deletions

2
README
View File

@@ -4,3 +4,5 @@ output_twitter - For each entry produce a twitter posting.
Requires python-twitter 0.5 or above.
output_rtorrent - Load accepted entries into rtorrent
output_log - Write entries to a log file

16
output_log.py Normal file
View File

@@ -0,0 +1,16 @@
""" Output Log - Output entries to a simple log file """
import logging
from flexget.plugin import *
log = logging.getLogger('log')
class OutputLog:
def validator(self):
pass
def get_config(self, feed):
pass
def feed_exit(self, feed):
pass