Improve logging commands
use logging.exception instead of setting exc_info.
This commit is contained in:
parent
7eeee89b23
commit
552fde45ed
1 changed files with 2 additions and 3 deletions
|
|
@ -509,11 +509,10 @@ class SmartScanThing(Thing):
|
||||||
if len(true_path) > 750:
|
if len(true_path) > 750:
|
||||||
break
|
break
|
||||||
except InvocationCancelledError:
|
except InvocationCancelledError:
|
||||||
logger.error("Stopping scan because it was cancelled.", exc_info=0)
|
logger.error("Stopping scan because it was cancelled.")
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
logger.error(
|
logger.exception(
|
||||||
f"Stopping scan because of an IOError (most likely a full disk): {e}",
|
f"Stopping scan because of an IOError (most likely a full disk): {e}",
|
||||||
exc_info=1,
|
|
||||||
)
|
)
|
||||||
finally:
|
finally:
|
||||||
logger.info("Creating zip archive of images (may take some time)...")
|
logger.info("Creating zip archive of images (may take some time)...")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue