Commit 01f225f9 authored by 林生雨's avatar 林生雨

remove print

parent 5548c62a
......@@ -44,7 +44,9 @@ class MainManager {
flutterEvent = EventChannel('gm_method_event');
flutterEvent.receiveBroadcastStream().listen((data) {
if (data is Map) {
print("LSY STATEINIT OKKK ${data}");
if(!inProduction){
print("LSY STATEINIT OKKK ${data}");
}
var map = Map<String, dynamic>.from(data);
initParams(map);
}
......@@ -95,9 +97,9 @@ class MainManager {
if (map[COOKIE] == null || "${map[COOKIE]}".isEmpty) {
CacheManager.getInstance().get(MEMORY_CACHE).save(COOKIE, null);
}
print(
"LSY QQWWEERRTTYY ${CacheManager.getInstance().get(MEMORY_CACHE).get(COOKIE)}"
" ${CacheManager.getInstance().get(MEMORY_CACHE).get(COOKIE) is String}");
// print(
// "LSY QQWWEERRTTYY ${CacheManager.getInstance().get(MEMORY_CACHE).get(COOKIE)}"
// " ${CacheManager.getInstance().get(MEMORY_CACHE).get(COOKIE) is String}");
// SimpleEventBus.instance().notifyListener("PlanPage!initState", "");
}
......
......@@ -38,7 +38,6 @@ void main() {
sharedPreferences = value;
});
}, (Object error, StackTrace stack) {
print("lsy EEEEEE ${error.toString()} ${stack.toString()}");
RouterCenterImpl()
.findMainRouter()
.catchErrorToBugly("${error.toString()}${stack.toString()}");
......@@ -85,7 +84,6 @@ class MyApp extends State<MyAppWidget> {
});
FlutterBoost.singleton
.addBoostContainerLifeCycleObserver((state, settings) {
print("LSY ${state}");
if (state == ContainerLifeCycle.Init) {
RouterCenterImpl().findMainRouter().init();
}
......
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