| Index: chrome/common/extensions/docs/server2/api_data_source.py
|
| diff --git a/chrome/common/extensions/docs/server2/api_data_source.py b/chrome/common/extensions/docs/server2/api_data_source.py
|
| index b189e358176fafd1dde24cba6f70129f28f2958b..323373c66aae5cd32f023ea9a56c7fcea5350d1f 100644
|
| --- a/chrome/common/extensions/docs/server2/api_data_source.py
|
| +++ b/chrome/common/extensions/docs/server2/api_data_source.py
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| import json
|
| +import logging
|
| import os
|
|
|
| from handlebar_dict_generator import HandlebarDictGenerator
|
| @@ -43,5 +44,6 @@ class APIDataSource(object):
|
| except Exception:
|
| try:
|
| return self._idl_cache.GetFromFile(self._base_path + '/' + idl_path)
|
| - except Exception:
|
| + except Exception as e:
|
| + logging.warn(e)
|
| return None
|
|
|