Mythus commited on
Commit
ccd2258
·
verified ·
1 Parent(s): 77f93c8

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +1 -0
run.py CHANGED
@@ -81,6 +81,7 @@ def catalog():
81
 
82
  @app.route('/stream/<type>/<id>.json')
83
  def addon_stream(type, id):
 
84
  if type not in MANIFEST['types']: # Change this to "channel"
85
  abort(404)
86
 
 
81
 
82
  @app.route('/stream/<type>/<id>.json')
83
  def addon_stream(type, id):
84
+ logging.debug(f"Received request for type: {type}, id: {id}")
85
  if type not in MANIFEST['types']: # Change this to "channel"
86
  abort(404)
87