Log http server errors

main
Bob Mottram 2020-06-08 17:46:01 +01:00
parent 3bd90969a0
commit ba38e6c995
2 changed files with 6 additions and 1 deletions

View File

@ -219,6 +219,11 @@ def readFollowList(filename: str) -> None:
class PubServer(BaseHTTPRequestHandler):
protocol_version = 'HTTP/1.1'
def handle_error(self, request, client_address):
print('ERROR: http server error: ' + str(request) + ', ' +
str(client_address))
pass
def _isMinimal(self, nickname: str) -> bool:
"""Returns true if minimal buttons should be shown
for the given account

View File

@ -1,5 +1,5 @@
#!/bin/bash
journalctl -u epicyon | grep 'File "' > .errors.txt
journalctl -u epicyon | grep 'File "\|ERROR:' > .errors.txt
if [ ! -f .errors.txt ]; then
echo 'No errors'
else