Skip to content

Commit

Permalink
Merge pull request #294 from Cal-CS-61A-Staff/supresslang
Browse files Browse the repository at this point in the history
Supress log message on auth
  • Loading branch information
soumyabasu committed Nov 7, 2014
2 parents 0027492 + ee0867c commit 62abee6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/utils/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ def do_GET(self):
self.end_headers()
self.wfile.write(bytes(SUCCESS_HTML, "utf-8"))

def log_message(self, format, *args):
return

server_address = (host_name, port_number)
httpd = http.server.HTTPServer(server_address, CodeHandler)
httpd.handle_request()
Expand Down

0 comments on commit 62abee6

Please sign in to comment.