Commit 81cd1180 authored by Gevorg Voskanyan's avatar Gevorg Voskanyan Committed by Commit Bot

[Windows] Output the error code when sending sync broker message fails in mojo/edk

R=rockot@chromium.org

Change-Id: I37bb122815288605e5df28ba9090eff02de8c864
Reviewed-on: https://chromium-review.googlesource.com/887023Reviewed-by: default avatarKen Rockot <rockot@chromium.org>
Commit-Queue: Ken Rockot <rockot@chromium.org>
Cr-Commit-Position: refs/heads/master@{#539070}
parent 300e022b
......@@ -953,6 +953,7 @@ TeamSpeak Systems GmbH <*@teamspeak.com>
The Chromium Authors <*@chromium.org>
The MathWorks, Inc. <binod.pant@mathworks.com>
Torchmobile Inc.
Upwork <*@cloud.upwork.com>
Venture 3 Systems LLC <*@venture3systems.com>
Vewd Software AS <*@vewd.com>
Yandex LLC <*@yandex-team.ru>
......@@ -131,7 +131,7 @@ scoped_refptr<PlatformSharedBuffer> Broker::GetSharedBuffer(size_t num_bytes) {
&bytes_written, nullptr);
if (!result ||
static_cast<size_t>(bytes_written) != out_message->data_num_bytes()) {
LOG(ERROR) << "Error sending sync broker message";
PLOG(ERROR) << "Error sending sync broker message";
return nullptr;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment