Skip to content

Commit aa76893

Browse files
committed
fix: adjust some of the delays on note() calls
1 parent df862d2 commit aa76893

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Code.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function lookUpBarcodes() {
177177

178178
// If few barcodes were fetched, it happens too fast to bother printing this.
179179
if (numBarcodes > 200) {
180-
note(`Looking up ${numBarcodes} barcodes …`, 10);
180+
note(`Looking up ${numBarcodes} barcodes …`, 15);
181181
}
182182

183183
// Each barcode lookup will consist of a CQL query of the form "barcode==N"
@@ -581,7 +581,7 @@ function writeResultsSheet(records) {
581581
const resultsSheet = createResultsSheet(records.length, headings);
582582
const cells = resultsSheet.getRange(2, 1, records.length, enabledFields.length);
583583
cells.setValues(cellValues);
584-
note('Writing results to sheet ✨', 8);
584+
note('Writing results to sheet ✨', 5);
585585
SpreadsheetApp.setActiveSheet(resultsSheet);
586586
}
587587

0 commit comments

Comments
 (0)