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
-
3
1
import 'package:bloc/bloc.dart' ;
4
2
5
3
class AppBlocObserver extends BlocObserver {
@@ -8,13 +6,13 @@ class AppBlocObserver extends BlocObserver {
8
6
@override
9
7
void onChange (BlocBase <dynamic > bloc, Change <dynamic > change) {
10
8
super .onChange (bloc, change);
11
- log ('onChange(${bloc .runtimeType }, $change )' );
9
+ // log('onChange(${bloc.runtimeType}, $change)');
12
10
print ('onChange(${bloc .runtimeType }, $change )' );
13
11
}
14
12
15
13
@override
16
14
void onError (BlocBase <dynamic > bloc, Object error, StackTrace stackTrace) {
17
- log ('onError(${bloc .runtimeType }, $error , $stackTrace )' );
15
+ // log('onError(${bloc.runtimeType}, $error, $stackTrace)');
18
16
print ('onError(${bloc .runtimeType }, $error , $stackTrace )' );
19
17
super .onError (bloc, error, stackTrace);
20
18
}
You can’t perform that action at this time.
0 commit comments