Commit c4877a30 authored by Firewayer's avatar Firewayer Committed by Luke

pick master pr

parent 8186e987
...@@ -211,7 +211,7 @@ public class FlutterBoostPlugin { ...@@ -211,7 +211,7 @@ public class FlutterBoostPlugin {
} catch (Throwable t) { } catch (Throwable t) {
result.error("no flutter page found!", t.getMessage(), t); result.error("no flutter page found!", t.getMessage(), Log.getStackTraceString(t));
} }
} }
break; break;
...@@ -230,7 +230,7 @@ public class FlutterBoostPlugin { ...@@ -230,7 +230,7 @@ public class FlutterBoostPlugin {
} }
}); });
} catch (Throwable t) { } catch (Throwable t) {
result.error("open page error", t.getMessage(), t); result.error("open page error", t.getMessage(), Log.getStackTraceString(t));
} }
} }
break; break;
...@@ -243,7 +243,7 @@ public class FlutterBoostPlugin { ...@@ -243,7 +243,7 @@ public class FlutterBoostPlugin {
mManager.closeContainer(uniqueId, resultData, exts); mManager.closeContainer(uniqueId, resultData, exts);
result.success(true); result.success(true);
} catch (Throwable t) { } catch (Throwable t) {
result.error("close page error", t.getMessage(), t); result.error("close page error", t.getMessage(), Log.getStackTraceString(t));
} }
} }
break; break;
...@@ -255,7 +255,7 @@ public class FlutterBoostPlugin { ...@@ -255,7 +255,7 @@ public class FlutterBoostPlugin {
mManager.onShownContainerChanged(newId, oldId); mManager.onShownContainerChanged(newId, oldId);
result.success(true); result.success(true);
} catch (Throwable t) { } catch (Throwable t) {
result.error("onShownContainerChanged", t.getMessage(), t); result.error("onShownContainerChanged", t.getMessage(), Log.getStackTraceString(t));
} }
} }
break; break;
......
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