Skip to content
Snippets Groups Projects
Commit c23bcd2f authored by JonasKubitza's avatar JonasKubitza
Browse files

Change logging output

parent b98e9b98
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,7 @@ def loadBuildModule(f, b, remote_repo=None, offline=False): ...@@ -239,7 +239,7 @@ def loadBuildModule(f, b, remote_repo=None, offline=False):
# Try with an existing local build repository first # Try with an existing local build repository first
m = Module(None, b) m = Module(None, b)
if m and (offline or m.is_valid_uri()): if m and (offline or m.is_valid_uri()):
info("Using build repo URI {}".format(m.uri())) info("Using local build repo URI {}".format(m.uri()))
if remote_repo and remote_repo not in m.uri(): if remote_repo and remote_repo not in m.uri():
warn("Git remote of local build repo doesn't match specified " \ warn("Git remote of local build repo doesn't match specified " \
"remote repo name") "remote repo name")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment