File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1- import 'dart:developer' ;
2-
31import 'package:bloc/bloc.dart' ;
42
53class AppBlocObserver extends BlocObserver {
@@ -8,13 +6,13 @@ class AppBlocObserver extends BlocObserver {
86 @override
97 void onChange (BlocBase <dynamic > bloc, Change <dynamic > change) {
108 super .onChange (bloc, change);
11- log ('onChange(${bloc .runtimeType }, $change )' );
9+ // log('onChange(${bloc.runtimeType}, $change)');
1210 print ('onChange(${bloc .runtimeType }, $change )' );
1311 }
1412
1513 @override
1614 void onError (BlocBase <dynamic > bloc, Object error, StackTrace stackTrace) {
17- log ('onError(${bloc .runtimeType }, $error , $stackTrace )' );
15+ // log('onError(${bloc.runtimeType}, $error, $stackTrace)');
1816 print ('onError(${bloc .runtimeType }, $error , $stackTrace )' );
1917 super .onError (bloc, error, stackTrace);
2018 }
You can’t perform that action at this time.
0 commit comments