mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-15 03:18:07 +00:00
Remove use of deprecated warn()
method on logger object (#1641)
Remove use of deprecated `warn()` method on logger object. Co-authored-by: Marc Greisen <marc@greisen.org>
This commit is contained in:
@ -176,7 +176,7 @@ class Client:
|
|||||||
if not azcopy:
|
if not azcopy:
|
||||||
raise Exception(AZCOPY_MISSING_ERROR)
|
raise Exception(AZCOPY_MISSING_ERROR)
|
||||||
else:
|
else:
|
||||||
logger.warn("unable to use built-in azcopy, using system install")
|
logger.warning("unable to use built-in azcopy, using system install")
|
||||||
self.azcopy = azcopy
|
self.azcopy = azcopy
|
||||||
|
|
||||||
with open(workbook_data) as f:
|
with open(workbook_data) as f:
|
||||||
|
Reference in New Issue
Block a user