Title: [225959] trunk/Tools
- Revision
- 225959
- Author
- [email protected]
- Date
- 2017-12-14 20:22:22 -0800 (Thu, 14 Dec 2017)
Log Message
[webkitpy, Windows] Remove unnecessary debug message
https://bugs.webkit.org/show_bug.cgi?id=180844
Patch by Basuke Suzuki <[email protected]> on 2017-12-14
Reviewed by Ryosuke Niwa.
* Scripts/webkitpy/common/system/crashlogs.py:
(CrashLogs._find_newest_log_win): Delete debug print
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (225958 => 225959)
--- trunk/Tools/ChangeLog 2017-12-15 04:19:29 UTC (rev 225958)
+++ trunk/Tools/ChangeLog 2017-12-15 04:22:22 UTC (rev 225959)
@@ -1,3 +1,13 @@
+2017-12-14 Basuke Suzuki <[email protected]>
+
+ [webkitpy, Windows] Remove unnecessary debug message
+ https://bugs.webkit.org/show_bug.cgi?id=180844
+
+ Reviewed by Ryosuke Niwa.
+
+ * Scripts/webkitpy/common/system/crashlogs.py:
+ (CrashLogs._find_newest_log_win): Delete debug print
+
2017-12-14 David Kilzer <[email protected]>
check-webkit-style: Stop warning about underscores in webrtc source
Modified: trunk/Tools/Scripts/webkitpy/common/system/crashlogs.py (225958 => 225959)
--- trunk/Tools/Scripts/webkitpy/common/system/crashlogs.py 2017-12-15 04:19:29 UTC (rev 225958)
+++ trunk/Tools/Scripts/webkitpy/common/system/crashlogs.py 2017-12-15 04:22:22 UTC (rev 225959)
@@ -120,15 +120,12 @@
if int(match.group('pid'), 16) == pid:
return errors + log_file
except IOError as e:
- print("IOError %s" % str(e))
if include_errors:
errors += u"ERROR: Failed to read '%s': %s\n" % (path, str(e))
except OSError as e:
- print("OSError %s" % str(e))
if include_errors:
errors += u"ERROR: Failed to read '%s': %s\n" % (path, str(e))
except UnicodeDecodeError as e:
- print("UnicodeDecodeError %s" % str(e))
if include_errors:
errors += u"ERROR: Failed to decode '%s' as ascii: %s\n" % (path, str(e))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes