mm2: added some decent debuggin
This commit is contained in:
parent
69ac52973d
commit
d54cf1c212
1 changed files with 5 additions and 1 deletions
|
@ -46,7 +46,11 @@ class RequestSync(threading.Thread,Loggable):
|
||||||
except BadSongFile as e:
|
except BadSongFile as e:
|
||||||
self.logger.info("This should never occur anymore!!!")
|
self.logger.info("This should never occur anymore!!!")
|
||||||
self.logger.info("Bad song file: '%s'" % e.path)
|
self.logger.info("Bad song file: '%s'" % e.path)
|
||||||
except Exception as e: self.unexpected_exception( e )
|
except Exception as e:
|
||||||
|
self.unexpected_exception( e )
|
||||||
|
if hasattr(request_event, 'path'):
|
||||||
|
self.logger.info("Possibly related to path: '%s'" %
|
||||||
|
request_event.path)
|
||||||
def make_req():
|
def make_req():
|
||||||
self.apiclient.send_media_monitor_requests( packed_requests )
|
self.apiclient.send_media_monitor_requests( packed_requests )
|
||||||
for try_index in range(0,self.retries):
|
for try_index in range(0,self.retries):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue