mirror of
https://github.com/nikdoof/flexget-plugins.git
synced 2025-12-17 19:59:23 +00:00
Started output_log plugin
This commit is contained in:
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