Skip to content

Commit 72df145

Browse files
committed
minor logging format changes (for consistancy with feature-redux)
1 parent 3652ac4 commit 72df145

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/logicAspect.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,16 @@ function assembleFeatureContent(app, activeFeatures) {
102102

103103
// when client override is an array, interpret it as logic modules
104104
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}), ' +
106106
'but client override (logicAspect.allowNoLogic$=[{logicModules}];) ' +
107107
'directed a continuation WITH specified logic modules.');
108108
appLogic = this.allowNoLogic$;
109109
}
110110
// otherwise, we simply disable redux-logic and continue on
111111
else {
112112
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.');
114115
}
115116
}
116117

0 commit comments

Comments
 (0)