Commit 68df0a67 authored by Anatoliy Potapchuk's avatar Anatoliy Potapchuk Committed by Commit Bot

[Kiosk] Record when we receive webstore kiosk app data request failure

Currently, there are a few kiosk tests which are failing when we most
probably get to STATUS_ERROR of KioskAppData. Let's add a log line
which will indicate whether it's a fake cws issue.

Bug: 1044417
Change-Id: I685d10c7cab773d3b7ee5a9f2d426ef2eea8da59
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2062444Reviewed-by: default avatarSergey Poromov <poromov@chromium.org>
Commit-Queue: Anatoliy Potapchuk <apotapchuk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#742680}
parent 362b6ca5
...@@ -475,6 +475,7 @@ void KioskAppData::StartFetch() { ...@@ -475,6 +475,7 @@ void KioskAppData::StartFetch() {
} }
void KioskAppData::OnWebstoreRequestFailure(const std::string& extension_id) { void KioskAppData::OnWebstoreRequestFailure(const std::string& extension_id) {
LOG(WARNING) << "Webstore request failure for app_id=" << extension_id;
SetStatus(STATUS_ERROR); SetStatus(STATUS_ERROR);
} }
......
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