Disable HttpServer log messages.
This commit is contained in:
parent
f210024e93
commit
515e6655e8
@ -1,3 +1,3 @@
|
||||
name = "basicswap"
|
||||
|
||||
__version__ = "0.11.43"
|
||||
__version__ = "0.11.44"
|
||||
|
@ -90,6 +90,13 @@ def listExplorerActions(swap_client):
|
||||
|
||||
class HttpHandler(BaseHTTPRequestHandler):
|
||||
|
||||
def log_error(self, format, *args):
|
||||
super().log_message(format, *args)
|
||||
|
||||
def log_message(self, format, *args):
|
||||
# TODO: Add debug flag to re-enable.
|
||||
pass
|
||||
|
||||
def generate_form_id(self):
|
||||
return os.urandom(8).hex()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user