Skip to content

Commit e5ab547

Browse files
committed
feat(log): Updates log messages
1 parent 920175f commit e5ab547

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

src/appellate/appellate.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -608,8 +608,7 @@ AppellateDelegate.prototype.handleAcmsDownloadPage = async function () {
608608
);
609609

610610
console.info(
611-
'RECAP: Got results from API. Running callback on API ' +
612-
'results to insert banner'
611+
'RECAP: Got results from API. Processing results to insert banner'
613612
);
614613
let result = recapLinks.results.filter(
615614
(obj) => obj.pacer_doc_id == this.docId,
@@ -883,8 +882,8 @@ AppellateDelegate.prototype.attachRecapLinksToEligibleDocs = async function () {
883882
return console.error('RECAP: Failed getting availability for dockets.');
884883

885884
console.info(
886-
'RECAP: Got results from API. Running callback on API results to ' +
887-
'attach links and icons where appropriate.'
885+
'RECAP: Got results from API. Processing results to attach links and ' +
886+
'icons where appropriate.'
888887
);
889888
for (let i = 0; i < this.links.length; i++) {
890889
let pacer_doc_id = this.links[i].dataset.pacerDocId;
@@ -1081,8 +1080,7 @@ AppellateDelegate.prototype.handleSingleDocumentPageView = async function () {
10811080
if (docData.Error) return;
10821081

10831082
console.info(
1084-
'RECAP: Got results from API. Running callback on API results to ' +
1085-
'insert banner'
1083+
'RECAP: Got results from API. Processing results to insert banner'
10861084
);
10871085
let result = docData.results.filter(
10881086
(obj) => obj.pacer_doc_id == this.docId

src/content_delegate.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,7 @@ ContentDelegate.prototype.handleSingleDocumentPageCheck = async function () {
449449

450450
if (!recapLinks.count) return;
451451
console.info(
452-
'RECAP: Got results from API. Running callback on API results to ' +
453-
'insert link'
452+
'RECAP: Got results from API. Processing results to insert link'
454453
);
455454
let result = recapLinks.results.filter(
456455
(doc) => doc.pacer_doc_id === this.pacer_doc_id,
@@ -587,8 +586,8 @@ ContentDelegate.prototype.attachRecapLinkToEligibleDocs = async function () {
587586
if (!recapLinks) return;
588587

589588
console.info(
590-
'RECAP: Got results from API. Running callback on API results to ' +
591-
'attach links and icons where appropriate.'
589+
'RECAP: Got results from API. Processing results to attach links and ' +
590+
'icons where appropriate.'
592591
);
593592
for (let i = 0; i < this.links.length; i++) {
594593
let pacer_doc_id = $(this.links[i]).data('pacer_doc_id');

0 commit comments

Comments
 (0)