This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年03月30日 06:44 by shinta.nakayama, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg157126 - (view) | Author: shinta.nakayama (shinta.nakayama) | Date: 2012年03月30日 06:44 | |
I found a bug in logging module in Windows. I wrote that at here. https://gist.github.com/2247692 my OS is Windows7 32bit. C:\Python27>python Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyright", "credits" or "license" for more information. >>> |
|||
| msg157127 - (view) | Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) | Date: 2012年03月30日 07:14 | |
Maybe some Antivirus program (or Tortoise) is still scanning the file and python cannot rename it. Can you try to deactivate the antivirus and try again? |
|||
| msg157312 - (view) | Author: shinta.nakayama (shinta.nakayama) | Date: 2012年04月01日 16:20 | |
Thank you Armaury. Allowing your advice,I tried that code on other machine(Windows7 without Antivirus). But it was same result. Windows says "process cant access to file. that file is using other process.". And could not rotate the logs. |
|||
| msg157339 - (view) | Author: Vinay Sajip (vinay.sajip) * (Python committer) | Date: 2012年04月02日 00:16 | |
This is not a logging bug. You called basicConfig with a file name, so the file is opened using a FileHandler and with file name LOG_FILENAME. You then add a RotatingFileHandler with the same name, so the file has two handles referring to it. When the time comes to rotate, the file is still open (with the FileHandler), which is why the rename fails on Windows (though Linux allows it). Closing as invalid. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:28 | admin | set | github: 58655 |
| 2012年04月02日 00:16:30 | vinay.sajip | set | status: open -> closed nosy: + vinay.sajip messages: + msg157339 resolution: not a bug |
| 2012年04月01日 16:20:09 | shinta.nakayama | set | messages: + msg157312 |
| 2012年03月30日 07:14:29 | amaury.forgeotdarc | set | nosy:
+ amaury.forgeotdarc messages: + msg157127 |
| 2012年03月30日 06:44:33 | shinta.nakayama | create | |