Show More
@@ -333,7 +333,7 b' class RhodeCodeLogger(Logger):' | |||
|
333 | 333 | def now(self): |
|
334 | 334 | """ return date in RhodeCode Log format """ |
|
335 | 335 | now = time.time() |
|
336 |
msecs = int((now - |
|
|
336 | msecs = int((now - int(now)) * 1000) | |
|
337 | 337 | return time.strftime(self.datefmt, time.localtime(now)) + '.{0:03d}'.format(msecs) |
|
338 | 338 | |
|
339 | 339 | def atoms(self, resp, req, environ, request_time): |
General Comments 0
You need to be logged in to leave comments.
Login now