Skip to content

Commit

Permalink
remove some debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefal committed Jan 16, 2024
1 parent 710b029 commit ca11b67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web_app/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,8 @@ def configure_receiver(brand="u-blox", model="F9P"):

print("configuring {} gnss receiver model {}".format(brand, model))
answer = subprocess.run([os.path.join(rtkbase_path, "tools", "install.sh"), "--user", rtkbaseconfig.get("general", "user"), "--configure-gnss"], encoding="UTF-8", stderr=subprocess.PIPE, stdout=subprocess.PIPE)
print("DEBUG - stdout: ", answer.stdout)
print("DEBUG - returncode: ", answer.returncode)
#print("DEBUG - stdout: ", answer.stdout)
#print("DEBUG - returncode: ", answer.returncode)

if answer.returncode == 0: # and "Done" in answer.stdout:
result = {"result" : "success"}
Expand Down

0 comments on commit ca11b67

Please sign in to comment.