| Index: runtime/lib/isolate.cc
|
| diff --git a/runtime/lib/isolate.cc b/runtime/lib/isolate.cc
|
| index 7219bda38b16d78209b6de077e7da862ef5cc014..3585ba93d138e8b0044a222b0f855a52b68c657f 100644
|
| --- a/runtime/lib/isolate.cc
|
| +++ b/runtime/lib/isolate.cc
|
| @@ -91,8 +91,7 @@ static void ShutdownIsolate(uword parameter) {
|
| Error& error = Error::Handle();
|
| error = isolate->object_store()->sticky_error();
|
| if (!error.IsNull()) {
|
| - OS::PrintErr("%s\n", error.ToErrorCString());
|
| - exit(255);
|
| + OS::PrintErr("in ShutdownIsolate: %s\n", error.ToErrorCString());
|
| }
|
| }
|
| {
|
|
|