Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logging atoms shouldn't stringify request time seconds/microseconds #621

Closed
estebistec opened this issue Oct 5, 2013 · 2 comments
Closed
Milestone

Comments

@estebistec
Copy link
Contributor

Looking at [1], we see that the seconds and microseconds attributes of the request-time timedelta are run through str.

This is a problem because access_log_format should technically be able to use the full range of Python string-formatting options [2], where applicable by type. For the request-time attributes, this means we should be able to format with %d in addition to %s, but the early conversion to string prevents this.

Simple fix is to remove the call to str(), allowing either a simple %s formatting or %d with all available Python string-formatting options. For example, to work around #584 one should be able to say "%(T)s.%(D)06d".

Pull request forthcoming.

[1]

'T': str(request_time.seconds),

[2] http://docs.python.org/2.7/library/stdtypes.html#string-formatting

@estebistec
Copy link
Contributor Author

Pull #622 submitted to resolve this.

@benoitc
Copy link
Owner

benoitc commented Nov 6, 2013

applied in cc193ff thanks!

@benoitc benoitc closed this as completed Nov 6, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants