Title: [254872] trunk/Source/WebKit
Revision
254872
Author
[email protected]
Date
2020-01-21 12:34:43 -0800 (Tue, 21 Jan 2020)

Log Message

Performance tests fail if stderr logging is encountered
https://bugs.webkit.org/show_bug.cgi?id=206544
<rdar://problem/58714766>

Reviewed by Per Arne Vollan.

Switch to LOG_ERROR, rather than WTFLogAlways, to avoid confusing the PerformanceTests system.

* Shared/Cocoa/SandboxExtensionCocoa.mm:
(WebKit::SandboxExtension::createHandleForReadByAuditToken):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (254871 => 254872)


--- trunk/Source/WebKit/ChangeLog	2020-01-21 20:33:40 UTC (rev 254871)
+++ trunk/Source/WebKit/ChangeLog	2020-01-21 20:34:43 UTC (rev 254872)
@@ -1,3 +1,16 @@
+2020-01-21  Brent Fulgham  <[email protected]>
+
+        Performance tests fail if stderr logging is encountered
+        https://bugs.webkit.org/show_bug.cgi?id=206544
+        <rdar://problem/58714766>
+
+        Reviewed by Per Arne Vollan.
+
+        Switch to LOG_ERROR, rather than WTFLogAlways, to avoid confusing the PerformanceTests system.
+
+        * Shared/Cocoa/SandboxExtensionCocoa.mm:
+        (WebKit::SandboxExtension::createHandleForReadByAuditToken):
+
 2020-01-21  youenn fablet  <[email protected]>
 
         Provide camera/microphone sandbox extensions to GPUProcess

Modified: trunk/Source/WebKit/Shared/Cocoa/SandboxExtensionCocoa.mm (254871 => 254872)


--- trunk/Source/WebKit/Shared/Cocoa/SandboxExtensionCocoa.mm	2020-01-21 20:33:40 UTC (rev 254871)
+++ trunk/Source/WebKit/Shared/Cocoa/SandboxExtensionCocoa.mm	2020-01-21 20:34:43 UTC (rev 254872)
@@ -355,7 +355,7 @@
 
     handle.m_sandboxExtension = SandboxExtensionImpl::create(path.utf8().data(), Type::ReadByProcess, auditToken);
     if (!handle.m_sandboxExtension) {
-        WTFLogAlways("Could not create sandbox extension");
+        LOG_ERROR("Could not create a sandbox extension for '%s'", path.utf8().data());
         return false;
     }
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to