Add logging of requests not found

This commit is contained in:
Juhani Haverinen 2016-08-14 22:36:56 +03:00
parent b10d070701
commit 836b21824d
1 changed files with 1 additions and 0 deletions

View File

@ -554,6 +554,7 @@ class Serve(threading.Thread):
file = get_file(full_path, config = self.config)
except FileNotFoundError:
log('%s: Requested path not found: %s' % (self.address, path))
reader = StringReader('%s not found\n' % path)
send_header(self.sock, protocol, Status.notfound, 'text/plain', config = self.config)
send_file(self.sock, reader, protocol, 'text/plain', config = self.config)