mirror of
https://github.com/nikdoof/flexget-plugins.git
synced 2025-12-13 05:12:15 +00:00
Started output_log plugin
This commit is contained in:
2
README
2
README
@@ -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
16
output_log.py
Normal 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
|
||||
Reference in New Issue
Block a user