From 6bdcf49c569acce9e6b8df783c6b5cc10aaedf14 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 15 Nov 2019 19:08:09 +0000 Subject: [PATCH] Swap order so that it's easier to sort --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index 306f0ace..8a0cbbf9 100644 --- a/daemon.py +++ b/daemon.py @@ -831,11 +831,11 @@ class PubServer(BaseHTTPRequestHandler): def _benchmarkGET(self,GETstartTime): if self.server.debug: - print('BENCHMARK GET|'+self.path+'|'+str(int((time.time()-GETstartTime)*1000))) + print('BENCHMARK GET|'+str(int((time.time()-GETstartTime)*1000))+'|'+self.path) def _benchmarkPOST(self,POSTstartTime): if self.server.debug: - print('BENCHMARK POST|'+self.path+'|'+str(int((time.time()-POSTstartTime)*1000))) + print('BENCHMARK POST|'+str(int((time.time()-POSTstartTime)*1000))+'|'+self.path) def do_GET(self): GETstartTime=time.time()