Skip to content

Commit

Permalink
Merge pull request #14 from ApexAI/reduce-debug-logs
Browse files Browse the repository at this point in the history
Remove unnecessary debug logs
  • Loading branch information
kilian-funk-apexai authored Aug 2, 2024
2 parents c76f2c3 + 766f2e3 commit 3bf5db7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions repos/config/detail/generate_ros2_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def build_load_command(repo, spec):
def build_http_archive_load_command(repo, spec):
build_files = "\n".join([f' "{k}": "{v}",' for k,v in spec['bazel'].items()])
return f"""
print("Loading: @{repo.replace('/','.')}")
_maybe(
name = "{repo.replace('/','.')}",
build_files = {{
Expand All @@ -67,7 +66,6 @@ def build_http_archive_load_command(repo, spec):
def build_local_load_command(repo, spec):
build_files = "\n".join([f' "{k}": "{v}",' for k,v in spec['bazel'].items()])
return f"""
print("Loading: @{repo.replace('/','.')}")
_maybe(
name = "{repo.replace('/','.')}",
build_files = {{
Expand All @@ -82,7 +80,6 @@ def build_local_load_command(repo, spec):
def build_git_load_command(repo, spec):
build_files = "\n".join([f' "{k}": "{v}",' for k,v in spec['bazel'].items()])
return f"""
print("Loading: @{repo.replace('/','.')}")
_maybe(
name = "{repo.replace('/','.')}",
branch = "{spec['version']}",
Expand Down Expand Up @@ -118,4 +115,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 3bf5db7

Please sign in to comment.