Skip to content

Commit fd922e8

Browse files
committed
Minor: Tidier console.l.og
1 parent 58ba3f6 commit fd922e8

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

src/app/component/circular-heatmap/circular-heatmap.component.ts

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,10 @@ export class CircularHeatmapComponent implements OnInit {
8585

8686
private LoadMaturityDataFromGeneratedYaml() {
8787
return new Promise<void>((resolve, reject) => {
88-
console.log(
89-
`${this.perfNow()}s: LoadMaturityDataFromGeneratedYaml Fetch`
90-
);
88+
console.log(`${this.perfNow()}s: LoadMaturityData Fetch`);
9189
this.yaml.setURI('./assets/YAML/generated/generated.yaml');
92-
9390
this.yaml.getJson().subscribe(data => {
94-
console.log(
95-
`${this.perfNow()}s: LoadMaturityDataFromGeneratedYaml Downloaded`
96-
);
91+
console.log(`${this.perfNow()}s: LoadMaturityData Downloaded`);
9792
this.YamlObject = data;
9893
this.AddSegmentLabels(this.YamlObject);
9994
const localStorageData = this.getDatasetFromBrowserStorage();
@@ -144,9 +139,7 @@ export class CircularHeatmapComponent implements OnInit {
144139
this.segment_labels
145140
);
146141
this.noActivitytoGrey();
147-
console.log(
148-
`${this.perfNow()}s: LoadMaturityDataFromGeneratedYaml End`
149-
);
142+
console.log(`${this.perfNow()}s: LoadMaturityData End`);
150143
resolve();
151144
});
152145
});

0 commit comments

Comments
 (0)