mirror of
https://github.com/nikdoof/flexget-plugins.git
synced 2025-12-13 05:12:15 +00:00
17 lines
260 B
Python
17 lines
260 B
Python
""" 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
|