Skip to content

Commit

Permalink
debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjergus committed Nov 24, 2018
1 parent a9fc699 commit cb798c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AI/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def ultimate_finding_cycle():
result = filter_results(yolo.result)
if len(result) == 1:
print('Woooow, I got an image')
logging.debug('Woooow, I got an image')
navigate_to_bottle(result)
break
else:
Expand All @@ -159,5 +160,5 @@ def ultimate_finding_cycle():
def main():
ultimate_finding_cycle()

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

0 comments on commit cb798c1

Please sign in to comment.