File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
firestore-bigquery-export/functions
storage-resize-images/functions Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ exports.bigQueryViewValidating = (viewName) => {
90
90
console . log ( `Validating existing BigQuery view: ${ viewName } ` ) ;
91
91
} ;
92
92
exports . complete = ( ) => {
93
- console . log ( "Completed mod execution" ) ;
93
+ console . log ( "Completed execution of extension " ) ;
94
94
} ;
95
95
exports . dataInserted = ( rowCount ) => {
96
96
console . log ( `Inserted ${ rowCount } row(s) of data into BigQuery` ) ;
@@ -105,10 +105,10 @@ exports.error = (err) => {
105
105
console . error ( "Error when mirroring data to BigQuery" , err ) ;
106
106
} ;
107
107
exports . init = ( ) => {
108
- console . log ( "Initializing mod with configuration" , config_1 . default ) ;
108
+ console . log ( "Initializing extension with configuration" , config_1 . default ) ;
109
109
} ;
110
110
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 ) ;
112
112
} ;
113
113
exports . timestampMissingValue = ( fieldName ) => {
114
114
console . warn ( `Missing value for timestamp field: ${ fieldName } , using default timestamp instead.` ) ;
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export const bigQueryViewValidating = (viewName: string) => {
116
116
} ;
117
117
118
118
export const complete = ( ) => {
119
- console . log ( "Completed mod execution" ) ;
119
+ console . log ( "Completed execution of extension " ) ;
120
120
} ;
121
121
122
122
export const dataInserted = ( rowCount : number ) => {
@@ -142,11 +142,11 @@ export const error = (err: Error) => {
142
142
} ;
143
143
144
144
export const init = ( ) => {
145
- console . log ( "Initializing mod with configuration" , config ) ;
145
+ console . log ( "Initializing extension with configuration" , config ) ;
146
146
} ;
147
147
148
148
export const start = ( ) => {
149
- console . log ( "Started mod execution with configuration" , config ) ;
149
+ console . log ( "Started execution of extension with configuration" , config ) ;
150
150
} ;
151
151
152
152
export const timestampMissingValue = ( fieldName : string ) => {
Original file line number Diff line number Diff line change 17
17
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
18
18
const config_1 = require ( "./config" ) ;
19
19
exports . complete = ( ) => {
20
- console . log ( "Completed mod execution" ) ;
20
+ console . log ( "Completed execution of extension " ) ;
21
21
} ;
22
22
exports . contentTypeInvalid = ( contentType ) => {
23
23
console . log ( `File of type '${ contentType } ' is not an image, no processing is required` ) ;
@@ -29,7 +29,7 @@ exports.errorDeleting = (err) => {
29
29
console . warn ( "Error when deleting temporary files" , err ) ;
30
30
} ;
31
31
exports . failed = ( ) => {
32
- console . log ( "Failed mod execution" ) ;
32
+ console . log ( "Failed execution of extension " ) ;
33
33
} ;
34
34
exports . imageAlreadyResized = ( ) => {
35
35
console . log ( "File is already a resized image, no processing is required" ) ;
Original file line number Diff line number Diff line change 17
17
import config from "./config" ;
18
18
19
19
export const complete = ( ) => {
20
- console . log ( "Completed mod execution" ) ;
20
+ console . log ( "Completed execution of extension " ) ;
21
21
} ;
22
22
23
23
export const contentTypeInvalid = ( contentType : string ) => {
@@ -35,7 +35,7 @@ export const errorDeleting = (err: Error) => {
35
35
} ;
36
36
37
37
export const failed = ( ) => {
38
- console . log ( "Failed mod execution" ) ;
38
+ console . log ( "Failed execution of extension " ) ;
39
39
} ;
40
40
41
41
export const imageAlreadyResized = ( ) => {
You can’t perform that action at this time.
0 commit comments