Changeset 47:515d4e5a2ec1
- Timestamp:
- 11/24/06 18:08:05
(2 years ago)
- Author:
- Allan Saddi <allan@saddi.com>
- branch:
- default
- convert_revision:
- svn:46762da8-4eb7-0310-94e9-d918b60927c8/flup/trunk@2113
- Message:
Don't bother with connection debug stuff when dealing with UNIX sockets.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r45 |
r47 |
|
| 211 | 211 | |
|---|
| 212 | 212 | def run(self): |
|---|
| 213 | | self.logger.debug('Connection starting up (%s:%d)', |
|---|
| 214 | | self._addr[0], self._addr[1]) |
|---|
| | 213 | if len(self._addr) == 2: |
|---|
| | 214 | self.logger.debug('Connection starting up (%s:%d)', |
|---|
| | 215 | self._addr[0], self._addr[1]) |
|---|
| 215 | 216 | |
|---|
| 216 | 217 | try: |
|---|
| … | … | |
| 223 | 224 | self.logger.exception('Exception caught in Connection') |
|---|
| 224 | 225 | |
|---|
| 225 | | self.logger.debug('Connection shutting down (%s:%d)', |
|---|
| 226 | | self._addr[0], self._addr[1]) |
|---|
| | 226 | if len(self._addr) == 2: |
|---|
| | 227 | self.logger.debug('Connection shutting down (%s:%d)', |
|---|
| | 228 | self._addr[0], self._addr[1]) |
|---|
| 227 | 229 | |
|---|
| 228 | 230 | # All done! |
|---|