Skip to content

Commit

Permalink
#180 remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mrowetz committed Mar 14, 2017
1 parent f6cf5f7 commit 50d4ef5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions build-utils/grunt-tasks/changelog-custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ module.exports = function (grunt) {
lines.shift(); //remove the html-ancor tag in the first line
grunt.config.data.changelog = escapeForBash(lines.join('\n'));

console.log("lines:", lines, "\n")

appendLogToFileStream(options.file, tmpBuffer, options.headerLines)
.on('close', () => {
grunt.log.ok(`${options.file} updated with latest changelog for ${options.version}`);
Expand Down
3 changes: 0 additions & 3 deletions src/ts/transformers/har.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export function transformDoc(harData: Har | Log): WaterfallDocs {
// make sure it's the *.log base node
let data = (harData["log"] !== undefined ? harData["log"] : harData) as Log;
const pages = getPages(data);
console.log("HAR created by %s(%s) %s page(s)", data.creator.name, data.creator.version, pages.length);

return {
pages: pages.map((_page, i) => this.transformPage(data, i)),
Expand Down Expand Up @@ -98,8 +97,6 @@ export function transformPage(harData: Har | Log, pageIndex: number = 0): Waterf
const pageStartTime = new Date(currPage.startedDateTime).getTime();
const pageTimings = currPage.pageTimings;

console.log("%s: %s of %s page(s)", currPage.title, pageIndex + 1, pages.length);

let doneTime = 0;
const isTLS = documentIsSecure(data.entries);
const entries = data.entries
Expand Down

0 comments on commit 50d4ef5

Please sign in to comment.