summaryrefslogtreecommitdiff
path: root/cherrypy/_cplogging.py
Commit message (Collapse)AuthorAgeFilesLines
* Collapse 'if True' blocks.Jason R. Coombs2018-09-021-21/+20
|
* Remove reliance on sixJason R. Coombs2018-09-021-27/+3
|
* Fix property settersSviatoslav Sydorenko2018-05-261-4/+4
|
* Upgrade @property decorator syntaxSviatoslav Sydorenko2018-05-261-27/+31
|
* Use bytes literals where appropriatev14.0.0Jason R. Coombs2018-02-041-2/+1
|
* Feed the hobgoblins (delint).Jason R. Coombs2017-10-271-6/+12
|
* Extend req w/ lazily evald on rend unique_id propSviatoslav Sydorenko2017-10-201-1/+1
|
* Make time_z lazily evaluated for loggingSviatoslav Sydorenko2017-10-201-7/+8
|
* fixed stringspagno2017-10-201-1/+1
|
* fixed request.uuidspagno2017-10-201-1/+1
|
* Fixed uuidv4 generationspagno2017-10-201-14/+1
|
* Added required blanklinespagno2017-10-201-0/+2
|
* Trying new methodspagno2017-10-201-37/+10
|
* uuid lazy propertyspagno2017-10-201-1/+39
|
* fixed unnecessary spacesspagno2017-10-201-1/+1
|
* fixed newlinespagno2017-10-201-0/+1
|
* New uuid calcspagno2017-10-201-3/+1
|
* Restored newlinespagno2017-10-201-0/+1
|
* Removed unnecessary newlinespagno2017-10-201-1/+0
|
* Fixed staticmethodspagno2017-10-201-2/+2
|
* Added newlinespagno2017-10-201-0/+1
|
* Now time_z is a staticmethodspagno2017-10-201-1/+1
|
* Fixed test on windowsAndrea Spagnolo2017-10-201-3/+4
|
* Fix atoms charspagno2017-10-201-1/+1
|
* Fix double quoted strings - fixedspagno2017-10-201-1/+1
|
* Added uuidv4 and now() in RFC3339 UTC Formatspagno2017-10-201-4/+11
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-24/+24
| | | | pre-commit run double-quote-string-fixer --all-files
* Fix E402 in _cploggingSviatoslav Sydorenko2016-09-081-3/+5
|
* Rely on six for Python 3 differentiationJason R. Coombs2016-06-051-10/+11
|
* Remove old format of serialising stacktrace in favour of new APIAlex Latchford2015-05-111-1/+0
|
* Include exc_info when calling loggerAlex Latchford2015-03-311-1/+4
|
* Merged in MichielOvertoom/cherrypycustomlogging (pull request #38)Jason R. Coombs2014-09-131-0/+1
|\ | | | | | | Custom logging: hostname and testcase
| * Custom logging: hostnameMichiel Overtoom2013-03-301-0/+1
| |
* | Remove trailing whitespaceAndrew Cox2014-05-171-4/+4
| | | | | | | | | | --HG-- branch : issue1282
* | Add note to _cplogging.py as per issue #1282Andrew Cox2014-05-171-0/+7
| | | | | | | | | | --HG-- branch : issue1282
* | More PEP8 work.Gustavo Picon2014-01-121-5/+8
| |
* | More pep8 cleanupsGustavo Picon2014-01-121-1/+1
| |
* | Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-12/+20
|/ | | | | --HG-- branch : autopep8
* Fix a bunch of links in the documentaton.Joel Rivera2013-03-191-3/+3
| | | | | | | Some of them has been updated to the new location and others just reformated to rst. Update copyright.
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-49/+49
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Fixed #1091 (log.screen = False has no effect in Python 3.2 when no log ↵Robert Brewer2011-10-151-1/+19
| | | | files are specified)
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+422
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-393/+0
| | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install.
* Some backports (mostly whitespace, really) from the python3 branch.Robert Brewer2010-12-271-0/+1
|
* Even more doc work.Robert Brewer2010-06-051-14/+152
|
* Docstring improvementsRobert Brewer2010-02-241-0/+4
|
* Some cross ports from the python3 branch, including two test fixes.Robert Brewer2009-06-241-2/+3
|
* All internals now use cherrypy.serving.request/response instead of ↵Robert Brewer2009-06-221-7/+7
| | | | request/response for a speed boost.
* Use new response.output_status for access log.Robert Brewer2009-06-141-1/+5
|
* as per a conversation with fumanchu - it seems that the error log is meant ↵Lakin Wecker2009-05-181-2/+2
| | | | for application specific messages as well as errors. (strange, but apparently true). I should have read the comment on the error method.