Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit f537767

Browse files
committed
chore(logging): remove unnecessary console.logs
remove unnecessary console.logs
1 parent c0ee52c commit f537767

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/deep-linking.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,13 @@ function deepLinkingWorker(context: BuildContext) {
2626
return Promise.resolve().then(() => {
2727
const appNgModulePath = getStringPropertyValue(Constants.ENV_APP_NG_MODULE_PATH);
2828
const appNgModuleFile = context.fileCache.get(appNgModulePath);
29-
console.log('Getting deep link config entries');
3029
const deepLinkConfigEntries = getDeepLinkData(appNgModulePath, context.fileCache, context.runAot);
31-
console.log('Checking for existing deep link config');
3230
const hasExisting = hasExistingDeepLinkConfig(appNgModulePath, appNgModuleFile.content);
3331
if (!hasExisting) {
3432
// only update the app's main ngModule if there isn't an existing config
35-
console.log('Converting deep link config to string');
3633
const deepLinkString = convertDeepLinkConfigEntriesToString(deepLinkConfigEntries);
37-
console.log('Updating App module and factory');
3834
updateAppNgModuleAndFactoryWithDeepLinkConfig(context, deepLinkString);
3935
}
40-
console.log('DONE');
4136
return deepLinkConfigEntries;
4237
});
4338
}

0 commit comments

Comments
 (0)