summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/test/test_server.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/test/test_server.cc b/net/test/test_server.cc
index fcc7d79a..8f5f3d2 100644
--- a/net/test/test_server.cc
+++ b/net/test/test_server.cc
@@ -295,8 +295,9 @@ bool TestServer::SetPythonPath() {
// Locate the Python code generated by the protocol buffers compiler.
FilePath pyproto_code_dir;
if (!GetPyProtoPath(&pyproto_code_dir)) {
- LOG(ERROR) << "Failed to get python dir for generated code.";
- return false;
+ LOG(WARNING) << "Cannot find pyproto dir for generated code. "
+ << "Testserver features that rely on it will not work";
+ return true;
}
AppendToPythonPath(pyproto_code_dir);