Swap order so that it's easier to sort

main
Bob Mottram 2019-11-15 19:08:09 +00:00
parent bfa82fbc0d
commit 6bdcf49c56
1 changed files with 2 additions and 2 deletions

View File

@ -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()