make logger arguments mandatory for aux module
This commit is contained in:
parent
766b5f6c81
commit
f073381d80
|
@ -46,7 +46,7 @@ def mkdirSafe(path, logger):
|
||||||
'Please (re)move this file to prevent data loss', path)
|
'Please (re)move this file to prevent data loss', path)
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
def waitForPath(path, logger=None, timeout=30):
|
def waitForPath(path, logger, timeout=30):
|
||||||
'''
|
'''
|
||||||
Waits for a path to appear. Useful for procfs and sysfs where devices
|
Waits for a path to appear. Useful for procfs and sysfs where devices
|
||||||
regularly (dis)appear. Timeout given in seconds
|
regularly (dis)appear. Timeout given in seconds
|
||||||
|
@ -55,11 +55,10 @@ def waitForPath(path, logger=None, timeout=30):
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
return
|
return
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
if logger:
|
logger.error('Could not find %s after %s seconds', path, timeout)
|
||||||
logger.error('Could not find %s after %s seconds', path, timeout)
|
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
def resetUSBDevice(device):
|
def resetUSBDevice(device, logger):
|
||||||
'''
|
'''
|
||||||
Resets a USB device using the de/reauthorization method. This is really
|
Resets a USB device using the de/reauthorization method. This is really
|
||||||
crude but works beautifully
|
crude but works beautifully
|
||||||
|
@ -69,3 +68,4 @@ def resetUSBDevice(device):
|
||||||
f.write('0')
|
f.write('0')
|
||||||
with open(devpath, 'w') as f:
|
with open(devpath, 'w') as f:
|
||||||
f.write('1')
|
f.write('1')
|
||||||
|
logger.debug('Reset USB device: %s', devpath)
|
||||||
|
|
Loading…
Reference in New Issue