| Index: components/arc/net/arc_net_host_impl.cc
|
| diff --git a/components/arc/net/arc_net_host_impl.cc b/components/arc/net/arc_net_host_impl.cc
|
| index 995e28526d8243e2958972ea285ef5d05ed5b44f..b6f497d0b1902e9d9fb5863bf5c1a9ddbbb7af7c 100644
|
| --- a/components/arc/net/arc_net_host_impl.cc
|
| +++ b/components/arc/net/arc_net_host_impl.cc
|
| @@ -55,7 +55,7 @@ std::string GetStringFromOncDictionary(const base::DictionaryValue* dict,
|
| std::string value;
|
| dict->GetString(key, &value);
|
| if (required && value.empty())
|
| - NOTREACHED();
|
| + VLOG(1) << "Required parameter " << key << " was not found.";
|
| return value;
|
| }
|
|
|
|
|