Skip to content

Commit 40e2552

Browse files
Merge pull request #344 from FirebasePrivate/rachelsaunders-logs-modremoval
logs - change lingering mod -> extension
2 parents e3e3239 + d4ab041 commit 40e2552

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

firestore-bigquery-export/functions/lib/logs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ exports.bigQueryViewValidating = (viewName) => {
9090
console.log(`Validating existing BigQuery view: ${viewName}`);
9191
};
9292
exports.complete = () => {
93-
console.log("Completed mod execution");
93+
console.log("Completed execution of extension");
9494
};
9595
exports.dataInserted = (rowCount) => {
9696
console.log(`Inserted ${rowCount} row(s) of data into BigQuery`);
@@ -105,10 +105,10 @@ exports.error = (err) => {
105105
console.error("Error when mirroring data to BigQuery", err);
106106
};
107107
exports.init = () => {
108-
console.log("Initializing mod with configuration", config_1.default);
108+
console.log("Initializing extension with configuration", config_1.default);
109109
};
110110
exports.start = () => {
111-
console.log("Started mod execution with configuration", config_1.default);
111+
console.log("Started execution of extension with configuration", config_1.default);
112112
};
113113
exports.timestampMissingValue = (fieldName) => {
114114
console.warn(`Missing value for timestamp field: ${fieldName}, using default timestamp instead.`);

firestore-bigquery-export/functions/src/logs.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export const bigQueryViewValidating = (viewName: string) => {
116116
};
117117

118118
export const complete = () => {
119-
console.log("Completed mod execution");
119+
console.log("Completed execution of extension");
120120
};
121121

122122
export const dataInserted = (rowCount: number) => {
@@ -142,11 +142,11 @@ export const error = (err: Error) => {
142142
};
143143

144144
export const init = () => {
145-
console.log("Initializing mod with configuration", config);
145+
console.log("Initializing extension with configuration", config);
146146
};
147147

148148
export const start = () => {
149-
console.log("Started mod execution with configuration", config);
149+
console.log("Started execution of extension with configuration", config);
150150
};
151151

152152
export const timestampMissingValue = (fieldName: string) => {

storage-resize-images/functions/lib/logs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Object.defineProperty(exports, "__esModule", { value: true });
1818
const config_1 = require("./config");
1919
exports.complete = () => {
20-
console.log("Completed mod execution");
20+
console.log("Completed execution of extension");
2121
};
2222
exports.contentTypeInvalid = (contentType) => {
2323
console.log(`File of type '${contentType}' is not an image, no processing is required`);
@@ -29,7 +29,7 @@ exports.errorDeleting = (err) => {
2929
console.warn("Error when deleting temporary files", err);
3030
};
3131
exports.failed = () => {
32-
console.log("Failed mod execution");
32+
console.log("Failed execution of extension");
3333
};
3434
exports.imageAlreadyResized = () => {
3535
console.log("File is already a resized image, no processing is required");

storage-resize-images/functions/src/logs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import config from "./config";
1818

1919
export const complete = () => {
20-
console.log("Completed mod execution");
20+
console.log("Completed execution of extension");
2121
};
2222

2323
export const contentTypeInvalid = (contentType: string) => {
@@ -35,7 +35,7 @@ export const errorDeleting = (err: Error) => {
3535
};
3636

3737
export const failed = () => {
38-
console.log("Failed mod execution");
38+
console.log("Failed execution of extension");
3939
};
4040

4141
export const imageAlreadyResized = () => {

0 commit comments

Comments
 (0)