Mojo: Log an error when we fail to find a JS module.

BUG=328119

Review URL: https://codereview.chromium.org/401723002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285023 0039d316-1c4b-4281-b951-d872f2087c98
parent fd47979e
...@@ -40,6 +40,7 @@ void AttempToLoadModule(const base::WeakPtr<Runner>& runner, ...@@ -40,6 +40,7 @@ void AttempToLoadModule(const base::WeakPtr<Runner>& runner,
runner->Run(source, id); runner->Run(source, id);
return; return;
} }
LOG(ERROR) << "Failed to load module from disk: " << id;
} }
} // namespace } // namespace
......
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