@modern-js/bff-core 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -186,7 +186,7 @@ export class ApiRouter {
|
|
|
186
186
|
const filenames = this.getApiFiles();
|
|
187
187
|
const moduleInfos = this.getModuleInfos(filenames);
|
|
188
188
|
const apiHandlers = this.getHandlerInfos(moduleInfos);
|
|
189
|
-
debug('apiHandlers', apiHandlers);
|
|
189
|
+
debug('apiHandlers', apiHandlers.length, apiHandlers);
|
|
190
190
|
return apiHandlers;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
@@ -230,7 +230,7 @@ class ApiRouter {
|
|
|
230
230
|
const filenames = this.getApiFiles();
|
|
231
231
|
const moduleInfos = this.getModuleInfos(filenames);
|
|
232
232
|
const apiHandlers = this.getHandlerInfos(moduleInfos);
|
|
233
|
-
(0, _utils2.debug)('apiHandlers', apiHandlers);
|
|
233
|
+
(0, _utils2.debug)('apiHandlers', apiHandlers.length, apiHandlers);
|
|
234
234
|
return apiHandlers;
|
|
235
235
|
}
|
|
236
236
|
/**
|