Merge "Improve "Lost network stack" error message" am: 73a065a41f

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1843137

Change-Id: Iefa0a4b53694828622487e673a0b4ed521e9a873
This commit is contained in:
Remi NGUYEN VAN
2021-10-04 08:12:36 +00:00
committed by Automerger Merge Worker

View File

@@ -278,7 +278,10 @@ public class ConnectivityModuleConnector {
// This code path is only run by the system server: only the system server binds // This code path is only run by the system server: only the system server binds
// to the NetworkStack as a service. Other processes get the NetworkStack from // to the NetworkStack as a service. Other processes get the NetworkStack from
// the ServiceManager. // the ServiceManager.
maybeCrashWithTerribleFailure("Lost network stack", mPackageName); maybeCrashWithTerribleFailure(
"Lost network stack. This is not the root cause of any issue, it is a side "
+ "effect of a crash that happened earlier. Earlier logs should point to the "
+ "actual issue.", mPackageName);
} }
} }