File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -102,15 +102,16 @@ function assembleFeatureContent(app, activeFeatures) {
102
102
103
103
// when client override is an array, interpret it as logic modules
104
104
if ( Array . isArray ( this . allowNoLogic$ ) ) {
105
- logf . force ( 'WARNING: NO logic modules were found in your Features, ' +
105
+ logf . force ( 'WARNING: NO logic modules were found in your Features (i.e. Feature.${this.name}) , ' +
106
106
'but client override (logicAspect.allowNoLogic$=[{logicModules}];) ' +
107
107
'directed a continuation WITH specified logic modules.' ) ;
108
108
appLogic = this . allowNoLogic$ ;
109
109
}
110
110
// otherwise, we simply disable redux-logic and continue on
111
111
else {
112
112
logf . force ( 'WARNING: NO logic modules were found in your Features, ' +
113
- 'but client override (logicAspect.allowNoLogic$=true;) directed a continuation WITHOUT redux-logic.' ) ;
113
+ 'but client override (logicAspect.allowNoLogic$=true;) ' +
114
+ 'directed a continuation WITHOUT redux-logic.' ) ;
114
115
}
115
116
}
116
117
You can’t perform that action at this time.
0 commit comments