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

Commit ae8646b

Browse files
committed
chore(logging): remove console.logs
1 parent 62f05fc commit ae8646b

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/util/config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,9 @@ export function generateContext(context?: BuildContext): BuildContext {
9090

9191
const appNgModulePath = resolve(getConfigValue(context, '--appNgModulePath', null, Constants.ENV_APP_NG_MODULE_PATH, Constants.ENV_APP_NG_MODULE_PATH.toLowerCase(), join(context.srcDir, 'app', 'app.module.ts')));
9292
setProcessEnvVar(Constants.ENV_APP_NG_MODULE_PATH, appNgModulePath);
93-
console.log('appNgModulePath: ', appNgModulePath);
9493

9594
const appNgModuleClass = getConfigValue(context, '--appNgModuleClass', null, Constants.ENV_APP_NG_MODULE_CLASS, Constants.ENV_APP_NG_MODULE_CLASS.toLowerCase(), 'AppModule');
9695
setProcessEnvVar(Constants.ENV_APP_NG_MODULE_CLASS, appNgModuleClass);
97-
console.log('appNgModuleClass: ', appNgModuleClass);
9896

9997
setProcessEnvVar(Constants.ENV_GLOB_UTIL, join(getProcessEnvVar(Constants.ENV_VAR_APP_SCRIPTS_DIR), 'dist', 'util', 'glob-util.js'));
10098

src/webpack/loader-impl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export function webpackLoader(source: string, map: any, webpackContex: any) {
1010
const context = getContext();
1111

1212
const absolutePath = resolve(normalize(webpackContex.resourcePath));
13-
console.log('absolutePath: ', absolutePath);
1413
Logger.debug(`[Webpack] loader: processing the following file: ${absolutePath}`);
1514
const javascriptPath = changeExtension(absolutePath, '.js');
1615
const sourceMapPath = javascriptPath + '.map';

0 commit comments

Comments
 (0)