Skip to content

Commit

Permalink
logging fix (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
plaird committed Feb 23, 2024
1 parent 8855149 commit cd175bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawl/bazel.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def _get_direct_deps(direct_dep_coords_wo_vers, coord_wo_vers_to_dep, maven_inst
if direct_dep is None:
msg = "Failed to find top level dependency instance for [{0}] with direct dep coord [{1}]".format(
maven_install_filename, direct_dep_coord_wo_vers)
logger.warn(msg)
logger.warning(msg)
assert not fail_on_missing, msg
return []
direct_deps.append(direct_dep)
Expand Down

0 comments on commit cd175bd

Please sign in to comment.