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

Commit

Permalink
chore(logging): remove unnecessary console.logs
Browse files Browse the repository at this point in the history
remove unnecessary console.logs
  • Loading branch information
danbucholtz committed Mar 9, 2017
1 parent c0ee52c commit f537767
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/deep-linking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,13 @@ function deepLinkingWorker(context: BuildContext) {
return Promise.resolve().then(() => {
const appNgModulePath = getStringPropertyValue(Constants.ENV_APP_NG_MODULE_PATH);
const appNgModuleFile = context.fileCache.get(appNgModulePath);
console.log('Getting deep link config entries');
const deepLinkConfigEntries = getDeepLinkData(appNgModulePath, context.fileCache, context.runAot);
console.log('Checking for existing deep link config');
const hasExisting = hasExistingDeepLinkConfig(appNgModulePath, appNgModuleFile.content);
if (!hasExisting) {
// only update the app's main ngModule if there isn't an existing config
console.log('Converting deep link config to string');
const deepLinkString = convertDeepLinkConfigEntriesToString(deepLinkConfigEntries);
console.log('Updating App module and factory');
updateAppNgModuleAndFactoryWithDeepLinkConfig(context, deepLinkString);
}
console.log('DONE');
return deepLinkConfigEntries;
});
}
Expand Down

0 comments on commit f537767

Please sign in to comment.