mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fixes usage of a depracated logger method
This commit is contained in:
parent
f96ee4f7a0
commit
5aeb656a48
@ -742,7 +742,7 @@ class TasksViewSerializer(serializers.ModelSerializer):
|
|||||||
result = filepath.name
|
result = filepath.name
|
||||||
except Exception as e: # pragma: no cover
|
except Exception as e: # pragma: no cover
|
||||||
# Extra security if something is malformed
|
# Extra security if something is malformed
|
||||||
logger.warn(f"Error getting file name from task: {e}", exc_info=True)
|
logger.warning(f"Error getting file name from task: {e}", exc_info=True)
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user