Changeset 63749 in webkit


Ignore:
Timestamp:
Jul 20, 2010 9:44:49 AM (14 years ago)
Author:
antonm@chromium.org
Message:

2010-07-20 Anton Muhin <antonm@chromium.org>

Reviewed by Darin Adler.

Print additional information about exception if failed to connect to apache (in verbose mode).
https://bugs.webkit.org/show_bug.cgi?id=42627

  • Scripts/webkitpy/layout_tests/port/http_server_base.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r63748 r63749  
     12010-07-20  Anton Muhin  <antonm@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Print additional information about exception if failed to connect to apache (in verbose mode).
     6        https://bugs.webkit.org/show_bug.cgi?id=42627
     7
     8        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
     9
    1102010-07-20  Tony Chang  <tony@chromium.org>
    211
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/http_server_base.py

    r57956 r63749  
    6868                response = urllib.urlopen(url)
    6969                _log.debug("Server running at %s" % url)
    70             except IOError:
    71                 _log.debug("Server NOT running at %s" % url)
     70            except IOError, e:
     71                _log.debug("Server NOT running at %s: %s" % (url, e))
    7272                return False
    7373
Note: See TracChangeset for help on using the changeset viewer.