forked from Hack4Impact-BU/eatwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase-debug.log
2728 lines (2718 loc) · 856 KB
/
firebase-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[debug] [2021-09-20T03:30:14.325Z] ----------------------------------------------------------------------
[debug] [2021-09-20T03:30:14.327Z] Command: /usr/local/bin/node /usr/local/bin/firebase emulators:start --only functions,hosting
[debug] [2021-09-20T03:30:14.327Z] CLI Version: 9.12.1
[debug] [2021-09-20T03:30:14.328Z] Platform: darwin
[debug] [2021-09-20T03:30:14.328Z] Node Version: v14.17.1
[debug] [2021-09-20T03:30:14.329Z] Time: Sun Sep 19 2021 23:30:14 GMT-0400 (Eastern Daylight Time)
[debug] [2021-09-20T03:30:14.329Z] ----------------------------------------------------------------------
[debug]
[debug] [2021-09-20T03:30:14.343Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
[debug] [2021-09-20T03:30:14.343Z] > authorizing via signed-in user ([email protected])
[info] i emulators: Starting emulators: functions, hosting {"metadata":{"emulator":{"name":"hub"},"message":"Starting emulators: functions, hosting"}}
[debug] [2021-09-20T03:30:14.365Z] [hub] writing locator at /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/hub-eatwell-87d0c.json
[warn] ⚠ functions: The following emulators are not running, calls to these services from the Functions emulator will affect production: auth, firestore, database, pubsub, storage {"metadata":{"emulator":{"name":"functions"},"message":"The following emulators are not running, calls to these services from the Functions emulator will affect production: \u001b[1mauth, firestore, database, pubsub, storage\u001b[22m"}}
[warn] ⚠ Your requested "node" version "10" doesn't match your global version "14" {"metadata":{"emulator":{"name":"functions"},"message":"Your requested \"node\" version \"10\" doesn't match your global version \"14\""}}
[debug] [2021-09-20T03:30:14.411Z] defaultcredentials: writing to file /Users/cicichen/.config/firebase/iccchen_bu_edu_application_default_credentials.json
[debug] [2021-09-20T03:30:14.416Z] Setting GAC to /Users/cicichen/.config/firebase/iccchen_bu_edu_application_default_credentials.json {"metadata":{"emulator":{"name":"functions"},"message":"Setting GAC to /Users/cicichen/.config/firebase/iccchen_bu_edu_application_default_credentials.json"}}
[debug] [2021-09-20T03:30:14.419Z] >>> [apiv2][query] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/adminSdkConfig [none]
[debug] [2021-09-20T03:30:14.823Z] <<< [apiv2][status] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/adminSdkConfig 200
[debug] [2021-09-20T03:30:14.823Z] <<< [apiv2][body] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/adminSdkConfig {"projectId":"eatwell-87d0c","storageBucket":"eatwell-87d0c.appspot.com","locationId":"us-east1"}
[debug] [2021-09-20T03:30:15.107Z] >>> [apiv2][query] GET https://firebasehosting.googleapis.com/v1beta1/projects/eatwell-87d0c/sites
[debug] [2021-09-20T03:30:15.536Z] <<< [apiv2][status] GET https://firebasehosting.googleapis.com/v1beta1/projects/eatwell-87d0c/sites 200
[debug] [2021-09-20T03:30:15.536Z] <<< [apiv2][body] GET https://firebasehosting.googleapis.com/v1beta1/projects/eatwell-87d0c/sites {"sites":[{"name":"projects/270259249884/sites/eatwell-87d0c","defaultUrl":"https://eatwell-87d0c.web.app","appId":"1:270259249884:web:799489f9bda4607144ca19","type":"DEFAULT_SITE"},{"name":"projects/270259249884/sites/eatwell-meal-kits","defaultUrl":"https://eatwell-meal-kits.web.app","type":"USER_SITE"}]}
[debug] [2021-09-20T03:30:15.536Z] >>> [apiv2][query] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/webApps/1:270259249884:web:799489f9bda4607144ca19/config [none]
[debug] [2021-09-20T03:30:15.964Z] <<< [apiv2][status] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/webApps/1:270259249884:web:799489f9bda4607144ca19/config 200
[debug] [2021-09-20T03:30:15.965Z] <<< [apiv2][body] GET https://firebase.googleapis.com/v1beta1/projects/eatwell-87d0c/webApps/1:270259249884:web:799489f9bda4607144ca19/config {"projectId":"eatwell-87d0c","appId":"1:270259249884:web:799489f9bda4607144ca19","storageBucket":"eatwell-87d0c.appspot.com","locationId":"us-east1","apiKey":"AIzaSyC2_aOpnms38eo6G2CmEwfIHMA04utDnis","authDomain":"eatwell-87d0c.firebaseapp.com","messagingSenderId":"270259249884","measurementId":"G-GE5Q40JYR2"}
[info] i hosting[eatwell]: Serving hosting files from: src/public {"metadata":{"emulator":{"name":"hosting"},"message":"Serving hosting files from: \u001b[1msrc/public\u001b[22m"}}
[info] ✔ hosting[eatwell]: Local server: http://localhost:5000 {"metadata":{"emulator":{"name":"hosting"},"message":"Local server: \u001b[4m\u001b[1mhttp://localhost:5000\u001b[22m\u001b[24m"}}
[debug] [2021-09-20T03:30:16.300Z] Ignoring unsupported arg: auto_download {"metadata":{"emulator":{"name":"ui"},"message":"Ignoring unsupported arg: auto_download"}}
[debug] [2021-09-20T03:30:16.300Z] Ignoring unsupported arg: port {"metadata":{"emulator":{"name":"ui"},"message":"Ignoring unsupported arg: port"}}
[debug] [2021-09-20T03:30:16.300Z] Starting Emulator UI with command {"binary":"node","args":["/Users/cicichen/.cache/firebase/emulators/ui-v1.5.0/server.bundle.js"],"optionalArgs":[],"joinArgs":false} {"metadata":{"emulator":{"name":"ui"},"message":"Starting Emulator UI with command {\"binary\":\"node\",\"args\":[\"/Users/cicichen/.cache/firebase/emulators/ui-v1.5.0/server.bundle.js\"],\"optionalArgs\":[],\"joinArgs\":false}"}}
[info] i ui: Emulator UI logging to ui-debug.log {"metadata":{"emulator":{"name":"ui"},"message":"Emulator UI logging to \u001b[1mui-debug.log\u001b[22m"}}
[debug] [2021-09-20T03:30:16.404Z] Web / API server started at http://localhost:4000
{"metadata":{"emulator":{"name":"ui"},"message":"Web / API server started at http://localhost:4000\n"}}
[info] i functions: Watching "/Users/cicichen/Documents/GitHub/eatwell" for Cloud Functions... {"metadata":{"emulator":{"name":"functions"},"message":"Watching \"/Users/cicichen/Documents/GitHub/eatwell\" for Cloud Functions..."}}
[debug] [2021-09-20T03:30:16.582Z] [worker-pool] addWorker(~diagnostic~) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(~diagnostic~)"}}
[debug] [2021-09-20T03:30:16.582Z] [worker-pool] Adding worker with key ~diagnostic~, total=1 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key ~diagnostic~, total=1"}}
[debug] [2021-09-20T03:30:16.582Z] [worker-pool] submitWork(triggerId=) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=)"}}
[debug] [2021-09-20T03:30:16.583Z] [worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52820.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52820.sock"}}
[debug] [2021-09-20T03:30:16.583Z] [worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: BUSY"}}
[debug] [2021-09-20T03:30:16.707Z] [runtime-status] [52820] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:30:16.709Z] [runtime-status] [52820] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:30:16.712Z] [runtime-status] [52820] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.713Z] [runtime-status] [52820] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.715Z] [runtime-status] [52820] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.716Z] [runtime-status] [52820] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:30:16.717Z] [runtime-status] [52820] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.775Z] [runtime-status] [52820] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:30:16.775Z] [runtime-status] [52820] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:30:16.776Z] [runtime-status] [52820] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.777Z] [runtime-status] [52820] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.777Z] [runtime-status] [52820] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:16.778Z] [runtime-status] [52820] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"message":"[runtime-status] [52820] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[info] ✔ functions[us-central1-nextjsFunc]: http function initialized (http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc). {"metadata":{"emulator":{"name":"functions"},"message":"\u001b[1mhttp\u001b[22m function initialized (http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc)."}}
[info]
┌─────────────────────────────────────────────────────────────┐
│ ✔ All emulators ready! It is now safe to connect your app. │
│ i View Emulator UI at http://localhost:4000 │
└─────────────────────────────────────────────────────────────┘
┌───────────┬────────────────┬─────────────────────────────────┐
│ Emulator │ Host:Port │ View in Emulator UI │
├───────────┼────────────────┼─────────────────────────────────┤
│ Functions │ localhost:5001 │ http://localhost:4000/functions │
├───────────┼────────────────┼─────────────────────────────────┤
│ Hosting │ localhost:5000 │ n/a │
└───────────┴────────────────┴─────────────────────────────────┘
Emulator Hub running at localhost:4400
Other reserved ports: 4500
Issues? Report them at https://github.com/firebase/firebase-tools/issues and attach the *-debug.log files.
[debug] [2021-09-20T03:30:16.852Z] [worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-~diagnostic~-800f3142-292d-4adb-b0f1-066311fcc0cc]: IDLE"}}
[info] [hosting] Rewriting / to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:30:43.759Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/
[debug] [2021-09-20T03:30:43.763Z] [work-queue] {"queueLength":1,"workRunningCount":0}
[debug] [2021-09-20T03:30:43.763Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[debug] [2021-09-20T03:30:43.764Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/ --> us-central1-nextjsFunc
[debug] [2021-09-20T03:30:43.776Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:30:43.777Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=1 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=1"}}
[debug] [2021-09-20T03:30:43.777Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:30:43.777Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:30:43.777Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY"}}
[debug] [2021-09-20T03:30:43.983Z] [runtime-status] [52831] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:30:43.985Z] [runtime-status] [52831] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:30:43.989Z] [runtime-status] [52831] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:43.990Z] [runtime-status] [52831] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:43.992Z] [runtime-status] [52831] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:43.993Z] [runtime-status] [52831] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:30:43.994Z] [runtime-status] [52831] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:44.058Z] [runtime-status] [52831] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:30:44.058Z] [runtime-status] [52831] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:30:44.059Z] [runtime-status] [52831] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:44.060Z] [runtime-status] [52831] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:44.060Z] [runtime-status] [52831] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:30:44.060Z] [runtime-status] [52831] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:30:44.132Z] [runtime-status] [52831] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:30:44.133Z] [runtime-status] [52831] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:30:44.133Z] [runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:30:44.136Z] [runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:30:44.140Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:30:44.141Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/, mapping to path=/ {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/, mapping to path=/"}}
[debug] [2021-09-20T03:30:44.149Z] [runtime-status] [52831] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[warn] ⚠ External network resource requested!
- URL: "https://telemetry.nextjs.org/api/v1/record"
- Be careful, this may be a production service. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"External network resource requested!\n - URL: \"https://telemetry.nextjs.org/api/v1/record\"\n - Be careful, this may be a production service."}}
[info] > event - build page: / {"user":"event - build page: /","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - build page: /"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[info] > Warning: Failed prop type: The prop `justify` of `Grid` must be used on `container`. {"user":"Warning: Failed prop type: The prop `justify` of `Grid` must be used on `container`.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Warning: Failed prop type: The prop `justify` of `Grid` must be used on `container`."}}
[info] > at WithStyles(ForwardRef(Grid)) (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31) {"user":" at WithStyles(ForwardRef(Grid)) (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at WithStyles(ForwardRef(Grid)) (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)"}}
[info] > at Index (webpack-internal:///./src/pages/index.js:53:19) {"user":" at Index (webpack-internal:///./src/pages/index.js:53:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Index (webpack-internal:///./src/pages/index.js:53:19)"}}
[info] > at MyApp (webpack-internal:///./src/pages/_app.js:18:3) {"user":" at MyApp (webpack-internal:///./src/pages/_app.js:18:3)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at MyApp (webpack-internal:///./src/pages/_app.js:18:3)"}}
[info] > at StylesProvider (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/StylesProvider/StylesProvider.js:57:24) {"user":" at StylesProvider (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/StylesProvider/StylesProvider.js:57:24)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at StylesProvider (/Users/cicichen/Documents/GitHub/eatwell/node_modules/@material-ui/styles/StylesProvider/StylesProvider.js:57:24)"}}
[info] > at AppContainer (/Users/cicichen/Documents/GitHub/eatwell/node_modules/next/dist/next-server/server/render.js:28:952) {"user":" at AppContainer (/Users/cicichen/Documents/GitHub/eatwell/node_modules/next/dist/next-server/server/render.js:28:952)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at AppContainer (/Users/cicichen/Documents/GitHub/eatwell/node_modules/next/dist/next-server/server/render.js:28:952)"}}
[debug] [2021-09-20T03:31:16.590Z] [runtime-status] [52831] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Ephemeral server survived."}}
[debug] [2021-09-20T03:31:16.613Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/ 200
[debug] [2021-09-20T03:31:16.613Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/ [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:16 +0000] "GET / HTTP/1.1" 200 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:16 +0000] \"GET / HTTP/1.1\" 200 - \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~21s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~21s"}}
[debug] [2021-09-20T03:31:16.634Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: IDLE"}}
[debug] [2021-09-20T03:31:16.634Z] [work-queue] {"queueLength":0,"workRunningCount":0}
[info] [hosting] Rewriting /_next/static/chunks/webpack.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:16.885Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js ts=1632108676510
[info] [hosting] Rewriting /_next/static/chunks/main.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:16.888Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js ts=1632108676510
[info] [hosting] Rewriting /_next/static/chunks/pages/_app.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:16.891Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js ts=1632108676510
[debug] [2021-09-20T03:31:16.897Z] [work-queue] {"queueLength":1,"workRunningCount":0}
[debug] [2021-09-20T03:31:16.897Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[debug] [2021-09-20T03:31:16.898Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:16.898Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:16.898Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:31:16.898Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY"}}
[debug] [2021-09-20T03:31:16.900Z] [runtime-status] [52831] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:16.901Z] [runtime-status] [52831] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:16.901Z] [runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:16.902Z] [work-queue] {"queueLength":1,"workRunningCount":1}
[debug] [2021-09-20T03:31:16.902Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[debug] [2021-09-20T03:31:16.902Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:16.921Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:16.921Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=2 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=2"}}
[debug] [2021-09-20T03:31:16.921Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:16.922Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:31:16.922Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY"}}
[debug] [2021-09-20T03:31:16.927Z] [runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:31:16.930Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:16.931Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js?ts=1632108676510, mapping to path=/_next/static/chunks/webpack.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js?ts=1632108676510, mapping to path=/_next/static/chunks/webpack.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:16.936Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:31:16.937Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:31:16.959Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:16.972Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:16.973Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=3 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=3"}}
[debug] [2021-09-20T03:31:16.973Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:16.973Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:31:16.973Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY"}}
[debug] [2021-09-20T03:31:16.974Z] [runtime-status] [52831] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[debug] [2021-09-20T03:31:17.258Z] [runtime-status] [52868] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:31:17.259Z] [runtime-status] [52867] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:31:17.262Z] [runtime-status] [52868] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:31:17.267Z] [runtime-status] [52867] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:31:17.267Z] [runtime-status] [52867] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.268Z] [runtime-status] [52867] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.268Z] [runtime-status] [52868] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.268Z] [runtime-status] [52868] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.268Z] [runtime-status] [52868] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.269Z] [runtime-status] [52867] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.269Z] [runtime-status] [52867] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:31:17.269Z] [runtime-status] [52868] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:31:17.270Z] [runtime-status] [52867] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.270Z] [runtime-status] [52868] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.331Z] [runtime-status] [52867] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:31:17.331Z] [runtime-status] [52868] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:31:17.331Z] [runtime-status] [52868] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:17.332Z] [runtime-status] [52867] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:17.332Z] [runtime-status] [52867] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.332Z] [runtime-status] [52868] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.334Z] [runtime-status] [52867] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.334Z] [runtime-status] [52867] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.334Z] [runtime-status] [52867] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:17.334Z] [runtime-status] [52868] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.334Z] [runtime-status] [52868] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:17.336Z] [runtime-status] [52868] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:17.388Z] [runtime-status] [52868] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:17.389Z] [runtime-status] [52868] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:17.389Z] [runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:17.389Z] [runtime-status] [52867] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:17.390Z] [runtime-status] [52867] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:17.390Z] [runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:17.393Z] [runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:31:17.394Z] [runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:31:17.397Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:17.397Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js?ts=1632108676510, mapping to path=/_next/static/chunks/pages/_app.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js?ts=1632108676510, mapping to path=/_next/static/chunks/pages/_app.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:17.398Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:17.398Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js?ts=1632108676510, mapping to path=/_next/static/chunks/main.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js?ts=1632108676510, mapping to path=/_next/static/chunks/main.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:17.414Z] [runtime-status] [52867] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:31:17.414Z] [runtime-status] [52868] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[warn] ⚠ External network resource requested!
- URL: "https://telemetry.nextjs.org/api/v1/record"
- Be careful, this may be a production service. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"External network resource requested!\n - URL: \"https://telemetry.nextjs.org/api/v1/record\"\n - Be careful, this may be a production service."}}
[warn] ⚠ External network resource requested!
- URL: "https://telemetry.nextjs.org/api/v1/record"
- Be careful, this may be a production service. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"External network resource requested!\n - URL: \"https://telemetry.nextjs.org/api/v1/record\"\n - Be careful, this may be a production service."}}
[debug] [2021-09-20T03:31:20.511Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js 200
[debug] [2021-09-20T03:31:20.511Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/main.js [stream]
[debug] [2021-09-20T03:31:20.515Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js 200
[debug] [2021-09-20T03:31:20.515Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/_app.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:20 +0000] "GET /_next/static/chunks/pages/_app.js?ts=1632108676510 HTTP/1.1" 200 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:20 +0000] \"GET /_next/static/chunks/pages/_app.js?ts=1632108676510 HTTP/1.1\" 200 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:20.526Z] [runtime-status] [52868] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~2s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~2s"}}
[debug] [2021-09-20T03:31:20.528Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: IDLE"}}
[debug] [2021-09-20T03:31:20.528Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[info] [hosting] Rewriting /_next/static/chunks/pages/index.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:20.602Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js ts=1632108676510
[debug] [2021-09-20T03:31:20.604Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:31:20.604Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:31:20.604Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:20.604Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:20.604Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:31:20.604Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY"}}
[debug] [2021-09-20T03:31:20.607Z] [runtime-status] [52868] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:20.607Z] [runtime-status] [52868] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:20.607Z] [runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:20.608Z] [runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:31:20.608Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:20.608Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js?ts=1632108676510, mapping to path=/_next/static/chunks/pages/index.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js?ts=1632108676510, mapping to path=/_next/static/chunks/pages/index.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:20.615Z] [runtime-status] [52868] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Ephemeral server handling GET request"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:20 +0000] "GET /_next/static/chunks/main.js?ts=1632108676510 HTTP/1.1" 200 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:20 +0000] \"GET /_next/static/chunks/main.js?ts=1632108676510 HTTP/1.1\" 200 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:20.759Z] [runtime-status] [52867] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~3s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~3s"}}
[debug] [2021-09-20T03:31:20.762Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: IDLE"}}
[debug] [2021-09-20T03:31:20.762Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[info] [hosting] Rewriting /_next/static/chunks/react-refresh.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:20.795Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js ts=1632108676510
[debug] [2021-09-20T03:31:20.799Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:31:20.799Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:31:20.799Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:20.799Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:20.799Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:31:20.799Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY"}}
[debug] [2021-09-20T03:31:20.800Z] [runtime-status] [52867] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:20.801Z] [runtime-status] [52867] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:20.801Z] [runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:20.801Z] [runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:31:20.802Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:20.802Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js?ts=1632108676510, mapping to path=/_next/static/chunks/react-refresh.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js?ts=1632108676510, mapping to path=/_next/static/chunks/react-refresh.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:20.804Z] [runtime-status] [52867] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] [hosting] Rewriting /_next/static/development/_buildManifest.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:21.254Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js ts=1632108676510
[info] [hosting] Rewriting /_next/static/development/_ssgManifest.js?ts=1632108676510 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:21.256Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js ts=1632108676510
[debug] [2021-09-20T03:31:21.274Z] [work-queue] {"queueLength":1,"workRunningCount":3}
[debug] [2021-09-20T03:31:21.274Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[debug] [2021-09-20T03:31:21.274Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:21.304Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:21.306Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=4 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=4"}}
[debug] [2021-09-20T03:31:21.306Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:21.307Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock"}}
[debug] [2021-09-20T03:31:21.307Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: BUSY"}}
[debug] [2021-09-20T03:31:21.325Z] [work-queue] {"queueLength":1,"workRunningCount":4}
[debug] [2021-09-20T03:31:21.325Z] [work-queue] {"queueLength":0,"workRunningCount":5}
[debug] [2021-09-20T03:31:21.325Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js?ts=1632108676510 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:21.336Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:21.337Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=5 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=5"}}
[debug] [2021-09-20T03:31:21.337Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:21.337Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock"}}
[debug] [2021-09-20T03:31:21.337Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: BUSY"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:21 +0000] "GET /assets/eatwell_logo%202.png HTTP/1.1" 200 54494 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:21 +0000] \"GET /assets/eatwell_logo%202.png HTTP/1.1\" 200 54494 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:21 +0000] "GET /assets/eatwell_logo.png HTTP/1.1" 200 130974 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:21 +0000] \"GET /assets/eatwell_logo.png HTTP/1.1\" 200 130974 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:21.686Z] [runtime-status] [52893] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:31:21.688Z] [runtime-status] [52893] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:31:21.690Z] [runtime-status] [52893] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.690Z] [runtime-status] [52893] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.693Z] [runtime-status] [52893] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[debug] [2021-09-20T03:31:21.696Z] [runtime-status] [52893] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:31:21.696Z] [runtime-status] [52893] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.700Z] [runtime-status] [52894] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:31:21.728Z] [runtime-status] [52894] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:31:21.731Z] [runtime-status] [52894] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.732Z] [runtime-status] [52894] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.733Z] [runtime-status] [52894] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.743Z] [runtime-status] [52894] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:31:21.749Z] [runtime-status] [52894] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[info] > event - build page: / {"user":"event - build page: /","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - build page: /"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[debug] [2021-09-20T03:31:21.916Z] [runtime-status] [52893] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:31:21.916Z] [runtime-status] [52893] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:21.918Z] [runtime-status] [52893] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.922Z] [runtime-status] [52893] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.922Z] [runtime-status] [52893] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.923Z] [runtime-status] [52893] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:21.925Z] [runtime-status] [52894] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:31:21.937Z] [runtime-status] [52894] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:21.938Z] [runtime-status] [52894] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.948Z] [runtime-status] [52894] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.952Z] [runtime-status] [52894] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:31:21.955Z] [runtime-status] [52894] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:31:22.005Z] [runtime-status] [52893] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:22.006Z] [runtime-status] [52893] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:22.006Z] [runtime-status] [52893] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:22.010Z] [runtime-status] [52893] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock"}}
[debug] [2021-09-20T03:31:22.015Z] [runtime-status] [52894] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:22.015Z] [runtime-status] [52894] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:22.015Z] [runtime-status] [52894] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:22.016Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:22.017Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js?ts=1632108676510, mapping to path=/_next/static/development/_buildManifest.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js?ts=1632108676510, mapping to path=/_next/static/development/_buildManifest.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:22.024Z] [runtime-status] [52893] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:31:22.037Z] [runtime-status] [52894] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[debug] [2021-09-20T03:31:22.050Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:22.050Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js?ts=1632108676510, mapping to path=/_next/static/development/_ssgManifest.js?ts=1632108676510 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js?ts=1632108676510, mapping to path=/_next/static/development/_ssgManifest.js?ts=1632108676510"}}
[debug] [2021-09-20T03:31:22.099Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js 200
[debug] [2021-09-20T03:31:22.099Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/react-refresh.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:22 +0000] "GET /_next/static/chunks/react-refresh.js?ts=1632108676510 HTTP/1.1" 200 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:22 +0000] \"GET /_next/static/chunks/react-refresh.js?ts=1632108676510 HTTP/1.1\" 200 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:22.102Z] [runtime-status] [52867] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~1s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~1s"}}
[debug] [2021-09-20T03:31:22.104Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: IDLE"}}
[debug] [2021-09-20T03:31:22.104Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[debug] [2021-09-20T03:31:22.106Z] [runtime-status] [52894] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[warn] ⚠ External network resource requested!
- URL: "https://telemetry.nextjs.org/api/v1/record"
- Be careful, this may be a production service. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"External network resource requested!\n - URL: \"https://telemetry.nextjs.org/api/v1/record\"\n - Be careful, this may be a production service."}}
[debug] [2021-09-20T03:31:25.579Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js 200
[debug] [2021-09-20T03:31:25.579Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_ssgManifest.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:25 +0000] "GET /_next/static/development/_ssgManifest.js?ts=1632108676510 HTTP/1.1" 200 76 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:25 +0000] \"GET /_next/static/development/_ssgManifest.js?ts=1632108676510 HTTP/1.1\" 200 76 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:25.585Z] [runtime-status] [52894] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~3s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~3s"}}
[debug] [2021-09-20T03:31:25.589Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: IDLE"}}
[debug] [2021-09-20T03:31:25.589Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[warn] ⚠ External network resource requested!
- URL: "https://telemetry.nextjs.org/api/v1/record"
- Be careful, this may be a production service. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"External network resource requested!\n - URL: \"https://telemetry.nextjs.org/api/v1/record\"\n - Be careful, this may be a production service."}}
[debug] [2021-09-20T03:31:25.645Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js 200
[debug] [2021-09-20T03:31:25.645Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_buildManifest.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:25 +0000] "GET /_next/static/development/_buildManifest.js?ts=1632108676510 HTTP/1.1" 200 235 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:25 +0000] \"GET /_next/static/development/_buildManifest.js?ts=1632108676510 HTTP/1.1\" 200 235 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:25.651Z] [runtime-status] [52893] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~3s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~3s"}}
[debug] [2021-09-20T03:31:25.653Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: IDLE"}}
[debug] [2021-09-20T03:31:25.654Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[debug] [2021-09-20T03:31:37.724Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js 200
[debug] [2021-09-20T03:31:37.724Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/webpack.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:31:37 +0000] "GET /_next/static/chunks/webpack.js?ts=1632108676510 HTTP/1.1" 200 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:31:37 +0000] \"GET /_next/static/chunks/webpack.js?ts=1632108676510 HTTP/1.1\" 200 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:31:37.784Z] [runtime-status] [52831] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~15s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~15s"}}
[debug] [2021-09-20T03:31:37.787Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: IDLE"}}
[debug] [2021-09-20T03:31:37.787Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[info] [hosting] Rewriting /_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:31:38.587Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js
[debug] [2021-09-20T03:31:38.592Z] [work-queue] {"queueLength":1,"workRunningCount":1}
[debug] [2021-09-20T03:31:38.592Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[debug] [2021-09-20T03:31:38.592Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js --> us-central1-nextjsFunc
[debug] [2021-09-20T03:31:38.593Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:31:38.593Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:31:38.593Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: BUSY"}}
[debug] [2021-09-20T03:31:43.126Z] [runtime-status] [52831] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:31:43.173Z] [runtime-status] [52831] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:31:43.173Z] [runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:31:43.249Z] [runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52831.sock"}}
[debug] [2021-09-20T03:31:43.344Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:31:43.351Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js, mapping to path=/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js, mapping to path=/_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js"}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[debug] [2021-09-20T03:32:07.308Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js 200
[debug] [2021-09-20T03:32:07.311Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/chunks/pages/index.js [stream]
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:09 +0000] "GET /_next/static/chunks/pages/index.js?ts=1632108676510 HTTP/1.1" 200 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:09 +0000] \"GET /_next/static/chunks/pages/index.js?ts=1632108676510 HTTP/1.1\" 200 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:32:09.666Z] [runtime-status] [52868] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Ephemeral server survived."}}
[info] i functions: Finished "us-central1-nextjsFunc" in ~20s {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Finished \"us-central1-nextjsFunc\" in ~20s"}}
[debug] [2021-09-20T03:32:09.667Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: IDLE {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: IDLE"}}
[debug] [2021-09-20T03:32:09.669Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[debug] [2021-09-20T03:32:13.145Z] [runtime-status] [52831] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52831] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] [hosting] Rewriting /_next/webpack-hmr?page=/ to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:15.516Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr page=%2F
[debug] [2021-09-20T03:32:15.581Z] [work-queue] {"queueLength":1,"workRunningCount":1}
[debug] [2021-09-20T03:32:15.583Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[debug] [2021-09-20T03:32:15.584Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:15.585Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:15.587Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:32:15.587Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: BUSY"}}
[debug] [2021-09-20T03:32:15.732Z] [runtime-status] [52867] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:15.736Z] [runtime-status] [52867] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:15.740Z] [runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:15.785Z] [runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52867.sock"}}
[debug] [2021-09-20T03:32:15.818Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:15.818Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F"}}
[debug] [2021-09-20T03:32:15.841Z] [runtime-status] [52867] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52867] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:20 +0000] "GET /_next/webpack-hmr?page=/ HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:20 +0000] \"GET /_next/webpack-hmr?page=/ HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] > event - compiled successfully {"user":"event - compiled successfully","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m event - compiled successfully"}}
[debug] [2021-09-20T03:32:24.719Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr 200
[debug] [2021-09-20T03:32:24.720Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr [stream]
[info] [hosting] Rewriting /_next/webpack-hmr?page=/ to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:26.820Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr page=%2F
[debug] [2021-09-20T03:32:26.850Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:32:26.850Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:32:26.850Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:26.850Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:26.851Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:32:26.851Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: BUSY"}}
[debug] [2021-09-20T03:32:26.901Z] [runtime-status] [52868] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:26.906Z] [runtime-status] [52868] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:26.906Z] [runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:27.067Z] [runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52868.sock"}}
[debug] [2021-09-20T03:32:27.084Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:27.085Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F"}}
[debug] [2021-09-20T03:32:27.118Z] [runtime-status] [52868] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52868] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:38 +0000] "GET /_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:38 +0000] \"GET /_next/static/chunks/node_modules_next_dist_client_dev_noop_js.js HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:40 +0000] "GET /favicon.ico HTTP/1.1" 200 15086 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:40 +0000] \"GET /favicon.ico HTTP/1.1\" 200 15086 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:32:49.690Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: exited"}}
[debug] [2021-09-20T03:32:49.693Z] [worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9aac9d3a-af62-4b25-adb5-2b1d6bc1f377]: FINISHED"}}
[debug] [2021-09-20T03:32:49.693Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:56 +0000] "GET /assets/backgroundImage.png HTTP/1.1" 200 429302 "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:56 +0000] \"GET /assets/backgroundImage.png HTTP/1.1\" 200 429302 \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:57 +0000] "GET /_next/webpack-hmr?page=/ HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:57 +0000] \"GET /_next/webpack-hmr?page=/ HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /_next/webpack-hmr?page=/ to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.194Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr page=%2F
[debug] [2021-09-20T03:32:57.263Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:32:57.263Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:32:57.263Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.264Z] [worker-pool] Cleaned up workers for us-central1-nextjsFunc: 5 --> 4 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Cleaned up workers for us-central1-nextjsFunc: 5 --> 4"}}
[debug] [2021-09-20T03:32:57.264Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.264Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock"}}
[debug] [2021-09-20T03:32:57.264Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: BUSY"}}
[debug] [2021-09-20T03:32:57.447Z] [runtime-status] [52893] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:57.455Z] [runtime-status] [52893] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:57.456Z] [runtime-status] [52893] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:57.560Z] [runtime-status] [52893] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52893.sock"}}
[debug] [2021-09-20T03:32:57.586Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:57.587Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F"}}
[debug] [2021-09-20T03:32:57.619Z] [runtime-status] [52893] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52893] Ephemeral server handling GET request"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:32:57 +0000] "GET /_next/webpack-hmr?page=/ HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:32:57 +0000] \"GET /_next/webpack-hmr?page=/ HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.785Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.792Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67
[debug] [2021-09-20T03:32:57.798Z] [work-queue] {"queueLength":1,"workRunningCount":3}
[debug] [2021-09-20T03:32:57.798Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[debug] [2021-09-20T03:32:57.799Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.799Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.800Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock"}}
[debug] [2021-09-20T03:32:57.800Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: BUSY"}}
[debug] [2021-09-20T03:32:57.806Z] [work-queue] {"queueLength":1,"workRunningCount":4}
[debug] [2021-09-20T03:32:57.806Z] [work-queue] {"queueLength":0,"workRunningCount":5}
[debug] [2021-09-20T03:32:57.806Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.831Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.832Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=5 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=5"}}
[debug] [2021-09-20T03:32:57.832Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.832Z] [worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53030.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53030.sock"}}
[debug] [2021-09-20T03:32:57.832Z] [worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: BUSY"}}
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.834Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.840Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:32:57.842Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33
[debug] [2021-09-20T03:32:57.860Z] [work-queue] {"queueLength":1,"workRunningCount":5}
[debug] [2021-09-20T03:32:57.860Z] [work-queue] {"queueLength":0,"workRunningCount":6}
[debug] [2021-09-20T03:32:57.860Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.868Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.868Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=6 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=6"}}
[debug] [2021-09-20T03:32:57.868Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.868Z] [worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53031.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53031.sock"}}
[debug] [2021-09-20T03:32:57.869Z] [worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: BUSY"}}
[debug] [2021-09-20T03:32:57.870Z] [work-queue] {"queueLength":1,"workRunningCount":6}
[debug] [2021-09-20T03:32:57.870Z] [work-queue] {"queueLength":0,"workRunningCount":7}
[debug] [2021-09-20T03:32:57.870Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.894Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.910Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=7 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=7"}}
[debug] [2021-09-20T03:32:57.910Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.910Z] [worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53032.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53032.sock"}}
[debug] [2021-09-20T03:32:57.910Z] [worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: BUSY"}}
[debug] [2021-09-20T03:32:57.926Z] [work-queue] {"queueLength":1,"workRunningCount":7}
[debug] [2021-09-20T03:32:57.926Z] [work-queue] {"queueLength":0,"workRunningCount":8}
[debug] [2021-09-20T03:32:57.926Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:32:57.956Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.957Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=8 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=8"}}
[debug] [2021-09-20T03:32:57.957Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:32:57.957Z] [worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53033.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53033.sock"}}
[debug] [2021-09-20T03:32:57.957Z] [worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: BUSY"}}
[debug] [2021-09-20T03:32:57.959Z] [runtime-status] [52894] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:57.964Z] [runtime-status] [52894] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:57.964Z] [runtime-status] [52894] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:57.964Z] [runtime-status] [52894] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_52894.sock"}}
[debug] [2021-09-20T03:32:57.966Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:57.967Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29"}}
[debug] [2021-09-20T03:32:57.989Z] [runtime-status] [52894] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [52894] Ephemeral server handling GET request"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[debug] [2021-09-20T03:32:58.606Z] [runtime-status] [53031] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:32:58.606Z] [runtime-status] [53030] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:32:58.607Z] [runtime-status] [53031] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:32:58.607Z] [runtime-status] [53030] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:32:58.610Z] [runtime-status] [53030] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.611Z] [runtime-status] [53031] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.612Z] [runtime-status] [53031] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.612Z] [runtime-status] [53030] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.621Z] [runtime-status] [53031] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.632Z] [runtime-status] [53030] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.672Z] [runtime-status] [53032] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:32:58.711Z] [runtime-status] [53032] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:32:58.735Z] [runtime-status] [53030] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:32:58.749Z] [runtime-status] [53032] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.750Z] [runtime-status] [53032] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.751Z] [runtime-status] [53030] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.751Z] [runtime-status] [53032] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[info] > wait - compiling... {"user":"wait - compiling...","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m wait - compiling..."}}
[debug] [2021-09-20T03:32:58.753Z] [runtime-status] [53031] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:32:58.756Z] [runtime-status] [53032] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:32:58.758Z] [runtime-status] [53032] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.772Z] [runtime-status] [53031] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.803Z] [runtime-status] [53033] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:32:58.810Z] [runtime-status] [53033] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:32:58.818Z] [runtime-status] [53033] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.821Z] [runtime-status] [53033] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.830Z] [runtime-status] [53033] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.836Z] [runtime-status] [53033] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:32:58.836Z] [runtime-status] [53033] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.843Z] [runtime-status] [53030] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:32:58.843Z] [runtime-status] [53030] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:58.844Z] [runtime-status] [53030] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.845Z] [runtime-status] [53030] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.845Z] [runtime-status] [53030] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:58.846Z] [runtime-status] [53030] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.018Z] [runtime-status] [53031] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:32:59.018Z] [runtime-status] [53031] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.019Z] [runtime-status] [53031] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.020Z] [runtime-status] [53031] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.021Z] [runtime-status] [53031] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.021Z] [runtime-status] [53031] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.086Z] [runtime-status] [53033] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:32:59.087Z] [runtime-status] [53033] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.088Z] [runtime-status] [53033] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.116Z] [runtime-status] [53032] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:32:59.116Z] [runtime-status] [53032] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.124Z] [runtime-status] [53032] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.125Z] [runtime-status] [53032] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.126Z] [runtime-status] [53032] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.126Z] [runtime-status] [53032] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.160Z] [runtime-status] [53033] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.160Z] [runtime-status] [53033] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:32:59.161Z] [runtime-status] [53033] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:32:59.201Z] [runtime-status] [53030] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:59.202Z] [runtime-status] [53030] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:59.202Z] [runtime-status] [53030] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:59.215Z] [runtime-status] [53030] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53030.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53030.sock"}}
[debug] [2021-09-20T03:32:59.219Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:59.219Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67"}}
[debug] [2021-09-20T03:32:59.239Z] [runtime-status] [53033] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:59.239Z] [runtime-status] [53033] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:59.239Z] [runtime-status] [53033] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:59.259Z] [runtime-status] [53031] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:59.260Z] [runtime-status] [53031] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:59.260Z] [runtime-status] [53031] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:59.265Z] [runtime-status] [53031] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53031.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53031.sock"}}
[debug] [2021-09-20T03:32:59.272Z] [runtime-status] [53032] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:32:59.272Z] [runtime-status] [53032] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:32:59.273Z] [runtime-status] [53032] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:32:59.282Z] [runtime-status] [53032] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53032.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53032.sock"}}
[debug] [2021-09-20T03:32:59.287Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:59.287Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1"}}
[debug] [2021-09-20T03:32:59.308Z] [runtime-status] [53032] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53032] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:32:59.331Z] [runtime-status] [53030] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:32:59.335Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:59.337Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21"}}
[debug] [2021-09-20T03:32:59.382Z] [runtime-status] [53033] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53033.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53033.sock"}}
[debug] [2021-09-20T03:32:59.390Z] [runtime-status] [53031] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53031] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:32:59.427Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:32:59.428Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33 {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33, mapping to path=/__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33"}}
[debug] [2021-09-20T03:32:59.526Z] [runtime-status] [53033] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53033] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:33:00 +0000] "GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29 HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:33:00 +0000] \"GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Object.__webpack_require__.f.j&arguments=&lineNumber=740&column=29 HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] "GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67 HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] \"GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=Function.__webpack_require__.e&arguments=&lineNumber=160&column=67 HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] "GET /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21 HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] \"GET /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&methodName=eval&arguments=&lineNumber=31&column=21 HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] "GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1 HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] \"GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fmain.js&methodName=Object..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fnext-dev.js&arguments=&lineNumber=589&column=1 HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] "GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33 HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:33:01 +0000] \"GET /__nextjs_original-stack-frame?isServerSide=false&file=file%3A%2F%2F%2FUsers%2Fcicichen%2FDocuments%2FGitHub%2Featwell%2F.next%2Fstatic%2Fchunks%2Fwebpack.js&methodName=__webpack_require__&arguments=&lineNumber=37&column=33 HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /_next/webpack-hmr?page=/ to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:33:02.724Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr page=%2F
[debug] [2021-09-20T03:33:02.734Z] [work-queue] {"queueLength":1,"workRunningCount":8}
[debug] [2021-09-20T03:33:02.735Z] [work-queue] {"queueLength":0,"workRunningCount":9}
[debug] [2021-09-20T03:33:02.735Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F --> us-central1-nextjsFunc
[debug] [2021-09-20T03:33:02.746Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:33:02.746Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=9 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=9"}}
[debug] [2021-09-20T03:33:02.746Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:33:02.747Z] [worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53038.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53038.sock"}}
[debug] [2021-09-20T03:33:02.747Z] [worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: BUSY"}}
[debug] [2021-09-20T03:33:04.015Z] [runtime-status] [53038] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:33:04.021Z] [runtime-status] [53038] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:33:04.027Z] [runtime-status] [53038] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.029Z] [runtime-status] [53038] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.032Z] [runtime-status] [53038] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.035Z] [runtime-status] [53038] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:33:04.035Z] [runtime-status] [53038] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.118Z] [runtime-status] [53038] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:33:04.118Z] [runtime-status] [53038] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:33:04.118Z] [runtime-status] [53038] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.119Z] [runtime-status] [53038] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.120Z] [runtime-status] [53038] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:33:04.121Z] [runtime-status] [53038] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:33:04.935Z] [runtime-status] [53038] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:33:04.971Z] [runtime-status] [53038] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:33:04.971Z] [runtime-status] [53038] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:33:04.971Z] [runtime-status] [53038] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53038.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53038.sock"}}
[debug] [2021-09-20T03:33:05.017Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:33:05.024Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F"}}
[debug] [2021-09-20T03:33:05.140Z] [runtime-status] [53038] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53038] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:33:05.903Z] [runtime-status] [53030] Ephemeral server survived. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53030] Ephemeral server survived."}}
[warn] ⚠ functions: Error: ENOENT: no such file or directory, rmdir '/Users/cicichen/Documents/GitHub/eatwell/.next/static/chunks/pages' {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Error: ENOENT: no such file or directory, rmdir '/Users/cicichen/Documents/GitHub/eatwell/.next/static/chunks/pages'"}}
[warn] ⚠ Your function was killed because it raised an unhandled error. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function was killed because it raised an unhandled error."}}
[debug] [2021-09-20T03:33:05.945Z] <<< [apiv2][status] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame 500
[debug] [2021-09-20T03:33:05.945Z] <<< [apiv2][body] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame [stream]
[debug] [2021-09-20T03:33:06.106Z] [worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: exited"}}
[debug] [2021-09-20T03:33:06.106Z] [worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-439917c5-e6a8-4d4d-8fee-338fdf99414f]: FINISHED"}}
[debug] [2021-09-20T03:33:06.106Z] [work-queue] {"queueLength":0,"workRunningCount":8}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:33:30.991Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: exited"}}
[debug] [2021-09-20T03:33:31.158Z] [worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-575e7d64-29d0-4750-9290-61b519c4f36c]: FINISHED"}}
[debug] [2021-09-20T03:33:31.170Z] [work-queue] {"queueLength":0,"workRunningCount":7}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:34:02.602Z] [worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: exited"}}
[debug] [2021-09-20T03:34:02.609Z] [worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8e3fda09-d188-40b7-9a21-451dff043fea]: FINISHED"}}
[debug] [2021-09-20T03:34:02.609Z] [work-queue] {"queueLength":0,"workRunningCount":6}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:34:02 +0000] "GET /_next/webpack-hmr?page=/ HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:34:02 +0000] \"GET /_next/webpack-hmr?page=/ HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[debug] [2021-09-20T03:34:02.890Z] [worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: exited"}}
[debug] [2021-09-20T03:34:02.891Z] [worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9f5d178e-f083-4c47-805f-6aa8a57dfd97]: FINISHED"}}
[debug] [2021-09-20T03:34:02.891Z] [work-queue] {"queueLength":0,"workRunningCount":5}
[debug] [2021-09-20T03:34:02.891Z] [worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: exited"}}
[debug] [2021-09-20T03:34:02.892Z] [worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-2aa10726-312f-4b3e-a8b3-e1fb04af9c7b]: FINISHED"}}
[debug] [2021-09-20T03:34:02.892Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:34:09.335Z] [worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: exited"}}
[debug] [2021-09-20T03:34:09.336Z] [worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8fd8d816-c6b7-4a6a-9020-eecb71bc5369]: FINISHED"}}
[debug] [2021-09-20T03:34:09.336Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:34:14.872Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: exited"}}
[debug] [2021-09-20T03:34:14.873Z] [worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-425a8119-584d-45a0-95c4-a8ba4d6a79cf]: FINISHED"}}
[debug] [2021-09-20T03:34:14.873Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:34:26.781Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: exited"}}
[debug] [2021-09-20T03:34:26.784Z] [worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-4df1b339-7242-4538-b97f-4234b94b021c]: FINISHED"}}
[debug] [2021-09-20T03:34:26.784Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[debug] [2021-09-20T03:34:26.963Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: exited"}}
[debug] [2021-09-20T03:34:26.972Z] [worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-55ed7e15-d75f-4cc6-aafe-c1b20dfba376]: FINISHED"}}
[debug] [2021-09-20T03:34:26.982Z] [work-queue] {"queueLength":0,"workRunningCount":0}
[info] [hosting] Rewriting /_next/webpack-hmr?page=/ to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:34:28.811Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr page=%2F
[debug] [2021-09-20T03:34:28.874Z] [work-queue] {"queueLength":1,"workRunningCount":0}
[debug] [2021-09-20T03:34:28.874Z] [work-queue] {"queueLength":0,"workRunningCount":1}
[debug] [2021-09-20T03:34:28.875Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F --> us-central1-nextjsFunc
[debug] [2021-09-20T03:34:28.876Z] [worker-pool] Cleaned up workers for us-central1-nextjsFunc: 9 --> 0 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Cleaned up workers for us-central1-nextjsFunc: 9 --> 0"}}
[debug] [2021-09-20T03:34:29.007Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:29.014Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=1 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=1"}}
[debug] [2021-09-20T03:34:29.022Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:29.031Z] [worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53106.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53106.sock"}}
[debug] [2021-09-20T03:34:29.032Z] [worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: BUSY"}}
[debug] [2021-09-20T03:34:30.604Z] [runtime-status] [53106] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:34:30.611Z] [runtime-status] [53106] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:34:30.623Z] [runtime-status] [53106] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:30.625Z] [runtime-status] [53106] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:30.655Z] [runtime-status] [53106] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:30.661Z] [runtime-status] [53106] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:34:30.661Z] [runtime-status] [53106] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:31.118Z] [runtime-status] [53106] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:34:31.118Z] [runtime-status] [53106] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:31.119Z] [runtime-status] [53106] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:31.126Z] [runtime-status] [53106] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:31.129Z] [runtime-status] [53106] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:31.129Z] [runtime-status] [53106] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:31.734Z] [runtime-status] [53106] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:34:31.741Z] [runtime-status] [53106] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:34:31.741Z] [runtime-status] [53106] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:34:31.768Z] [runtime-status] [53106] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53106.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53106.sock"}}
[debug] [2021-09-20T03:34:31.814Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:34:31.826Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/webpack-hmr?page=%2F, mapping to path=/_next/webpack-hmr?page=%2F"}}
[debug] [2021-09-20T03:34:32.017Z] [runtime-status] [53106] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53106] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] [hosting] Rewriting /api/recipes/getAllRecipesDic to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:34:38.314Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/api/recipes/getAllRecipesDic
[info] [hosting] Rewriting /api/programs/getAllProgramsDic to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:34:38.413Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/api/programs/getAllProgramsDic
[debug] [2021-09-20T03:34:38.465Z] [work-queue] {"queueLength":1,"workRunningCount":1}
[debug] [2021-09-20T03:34:38.465Z] [work-queue] {"queueLength":0,"workRunningCount":2}
[debug] [2021-09-20T03:34:38.465Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/api/recipes/getAllRecipesDic --> us-central1-nextjsFunc
[debug] [2021-09-20T03:34:38.665Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:38.666Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=2 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=2"}}
[debug] [2021-09-20T03:34:38.666Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:38.667Z] [worker-us-central1-nextjsFunc-91442f0f-5dc2-44f9-8d78-dccc56c45eeb]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53118.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-91442f0f-5dc2-44f9-8d78-dccc56c45eeb]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53118.sock"}}
[debug] [2021-09-20T03:34:38.667Z] [worker-us-central1-nextjsFunc-91442f0f-5dc2-44f9-8d78-dccc56c45eeb]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-91442f0f-5dc2-44f9-8d78-dccc56c45eeb]: BUSY"}}
[debug] [2021-09-20T03:34:38.671Z] [work-queue] {"queueLength":1,"workRunningCount":2}
[debug] [2021-09-20T03:34:38.671Z] [work-queue] {"queueLength":0,"workRunningCount":3}
[debug] [2021-09-20T03:34:38.671Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/api/programs/getAllProgramsDic --> us-central1-nextjsFunc
[debug] [2021-09-20T03:34:38.692Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:38.693Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=3 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=3"}}
[debug] [2021-09-20T03:34:38.693Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:38.693Z] [worker-us-central1-nextjsFunc-8607185e-8f73-41d9-83a5-6af756174d52]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53119.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8607185e-8f73-41d9-83a5-6af756174d52]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53119.sock"}}
[debug] [2021-09-20T03:34:38.693Z] [worker-us-central1-nextjsFunc-8607185e-8f73-41d9-83a5-6af756174d52]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-8607185e-8f73-41d9-83a5-6af756174d52]: BUSY"}}
[info] [hosting] Rewriting /_next/static/development/_devPagesManifest.json to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:34:39.408Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_devPagesManifest.json
[debug] [2021-09-20T03:34:39.418Z] [work-queue] {"queueLength":1,"workRunningCount":3}
[debug] [2021-09-20T03:34:39.418Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[debug] [2021-09-20T03:34:39.418Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_devPagesManifest.json --> us-central1-nextjsFunc
[debug] [2021-09-20T03:34:39.435Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:39.435Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=4 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=4"}}
[debug] [2021-09-20T03:34:39.435Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:39.436Z] [worker-us-central1-nextjsFunc-14e3af1a-a5c7-47f6-a390-6706f2d3b467]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53120.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-14e3af1a-a5c7-47f6-a390-6706f2d3b467]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53120.sock"}}
[debug] [2021-09-20T03:34:39.436Z] [worker-us-central1-nextjsFunc-14e3af1a-a5c7-47f6-a390-6706f2d3b467]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-14e3af1a-a5c7-47f6-a390-6706f2d3b467]: BUSY"}}
[debug] [2021-09-20T03:34:39.702Z] [runtime-status] [53118] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:34:39.703Z] [runtime-status] [53119] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:34:39.708Z] [runtime-status] [53118] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:34:39.710Z] [runtime-status] [53119] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:34:39.714Z] [runtime-status] [53118] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.714Z] [runtime-status] [53119] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.716Z] [runtime-status] [53119] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.724Z] [runtime-status] [53118] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.728Z] [runtime-status] [53119] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.730Z] [runtime-status] [53119] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:34:39.730Z] [runtime-status] [53119] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.731Z] [runtime-status] [53118] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.736Z] [runtime-status] [53118] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:34:39.738Z] [runtime-status] [53118] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.876Z] [runtime-status] [53119] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:34:39.877Z] [runtime-status] [53118] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:34:39.878Z] [runtime-status] [53118] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:39.881Z] [runtime-status] [53118] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.882Z] [runtime-status] [53119] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:39.885Z] [runtime-status] [53119] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.888Z] [runtime-status] [53118] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.889Z] [runtime-status] [53119] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.889Z] [runtime-status] [53118] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.890Z] [runtime-status] [53118] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:39.891Z] [runtime-status] [53119] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.891Z] [runtime-status] [53119] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:39.968Z] [runtime-status] [53120] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:34:39.971Z] [runtime-status] [53120] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:34:39.973Z] [runtime-status] [53120] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.975Z] [runtime-status] [53120] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.981Z] [runtime-status] [53120] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:39.983Z] [runtime-status] [53120] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:34:39.983Z] [runtime-status] [53120] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:40.070Z] [runtime-status] [53119] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:34:40.072Z] [runtime-status] [53119] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:34:40.072Z] [runtime-status] [53119] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:34:40.072Z] [runtime-status] [53118] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:34:40.073Z] [runtime-status] [53118] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:34:40.073Z] [runtime-status] [53118] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:34:40.080Z] [runtime-status] [53119] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53119.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53119.sock"}}
[debug] [2021-09-20T03:34:40.081Z] [runtime-status] [53118] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53118.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53118.sock"}}
[debug] [2021-09-20T03:34:40.087Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:34:40.088Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/api/programs/getAllProgramsDic, mapping to path=/api/programs/getAllProgramsDic {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/api/programs/getAllProgramsDic, mapping to path=/api/programs/getAllProgramsDic"}}
[debug] [2021-09-20T03:34:40.094Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:34:40.094Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/api/recipes/getAllRecipesDic, mapping to path=/api/recipes/getAllRecipesDic {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/api/recipes/getAllRecipesDic, mapping to path=/api/recipes/getAllRecipesDic"}}
[debug] [2021-09-20T03:34:40.127Z] [runtime-status] [53119] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53119] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:34:40.130Z] [runtime-status] [53118] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53118] Ephemeral server handling GET request"}}
[debug] [2021-09-20T03:34:40.254Z] [runtime-status] [53120] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:34:40.255Z] [runtime-status] [53120] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:40.260Z] [runtime-status] [53120] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:40.262Z] [runtime-status] [53120] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:40.267Z] [runtime-status] [53120] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:40.268Z] [runtime-status] [53120] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:40.546Z] [runtime-status] [53120] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:34:40.548Z] [runtime-status] [53120] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:34:40.548Z] [runtime-status] [53120] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:34:40.588Z] [runtime-status] [53120] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53120.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53120.sock"}}
[debug] [2021-09-20T03:34:40.611Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:34:40.611Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_devPagesManifest.json, mapping to path=/_next/static/development/_devPagesManifest.json {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/_next/static/development/_devPagesManifest.json, mapping to path=/_next/static/development/_devPagesManifest.json"}}
[debug] [2021-09-20T03:34:40.668Z] [runtime-status] [53120] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53120] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:34:42 +0000] "GET /_next/webpack-hmr?page=/ HTTP/1.1" - - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:34:42 +0000] \"GET /_next/webpack-hmr?page=/ HTTP/1.1\" - - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /profile/manage to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:34:42.981Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/profile/manage
[debug] [2021-09-20T03:34:42.984Z] [work-queue] {"queueLength":1,"workRunningCount":4}
[debug] [2021-09-20T03:34:42.984Z] [work-queue] {"queueLength":0,"workRunningCount":5}
[debug] [2021-09-20T03:34:42.984Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/profile/manage --> us-central1-nextjsFunc
[debug] [2021-09-20T03:34:42.995Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:42.996Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=5 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=5"}}
[debug] [2021-09-20T03:34:42.996Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:34:42.996Z] [worker-us-central1-nextjsFunc-109bc8cc-7f24-47be-b3ff-b6e392e3d7d0]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53124.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-109bc8cc-7f24-47be-b3ff-b6e392e3d7d0]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53124.sock"}}
[debug] [2021-09-20T03:34:42.996Z] [worker-us-central1-nextjsFunc-109bc8cc-7f24-47be-b3ff-b6e392e3d7d0]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-109bc8cc-7f24-47be-b3ff-b6e392e3d7d0]: BUSY"}}
[debug] [2021-09-20T03:34:43.858Z] [runtime-status] [53124] Functions runtime initialized. {"cwd":"/Users/cicichen/Documents/GitHub/eatwell","node_version":"14.17.1"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Functions runtime initialized. {\"cwd\":\"/Users/cicichen/Documents/GitHub/eatwell\",\"node_version\":\"14.17.1\"}"}}
[debug] [2021-09-20T03:34:43.882Z] [runtime-status] [53124] Disabled runtime features: undefined {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Disabled runtime features: undefined"}}
[debug] [2021-09-20T03:34:43.891Z] [runtime-status] [53124] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:43.901Z] [runtime-status] [53124] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.182Z] [runtime-status] [53124] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.187Z] [runtime-status] [53124] Outgoing network have been stubbed. [{"name":"http","status":"mocked"},{"name":"http","status":"mocked"},{"name":"https","status":"mocked"},{"name":"https","status":"mocked"},{"name":"net","status":"mocked"}] {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Outgoing network have been stubbed. [{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"http\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"https\",\"status\":\"mocked\"},{\"name\":\"net\",\"status\":\"mocked\"}]"}}
[debug] [2021-09-20T03:34:44.190Z] [runtime-status] [53124] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.362Z] [runtime-status] [53124] Checked functions.config() {"config":{}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Checked functions.config() {\"config\":{}}"}}
[debug] [2021-09-20T03:34:44.363Z] [runtime-status] [53124] firebase-functions has been stubbed. {"functionsResolution":{"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] firebase-functions has been stubbed. {\"functionsResolution\":{\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:44.364Z] [runtime-status] [53124] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.365Z] [runtime-status] [53124] Resolved module firebase-admin {"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-admin {\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.366Z] [runtime-status] [53124] Resolved module firebase-functions {"declared":true,"installed":true,"version":"3.14.1","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Resolved module firebase-functions {\"declared\":true,\"installed\":true,\"version\":\"3.14.1\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-functions/lib/index.js\"}"}}
[debug] [2021-09-20T03:34:44.366Z] [runtime-status] [53124] firebase-admin has been stubbed. {"adminResolution":{"declared":true,"installed":true,"version":"9.8.0","resolution":"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js"}} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] firebase-admin has been stubbed. {\"adminResolution\":{\"declared\":true,\"installed\":true,\"version\":\"9.8.0\",\"resolution\":\"/Users/cicichen/Documents/GitHub/eatwell/node_modules/firebase-admin/lib/index.js\"}}"}}
[debug] [2021-09-20T03:34:44.662Z] [runtime-status] [53124] Trigger "us-central1-nextjsFunc" has been found, beginning invocation! {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Trigger \"us-central1-nextjsFunc\" has been found, beginning invocation!"}}
[info] i functions: Beginning execution of "us-central1-nextjsFunc" {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Beginning execution of \"us-central1-nextjsFunc\""}}
[debug] [2021-09-20T03:34:44.673Z] [runtime-status] [53124] triggerDefinition {"httpsTrigger":{},"name":"nextjsFunc","entryPoint":"nextjsFunc","regions":["us-central1"],"region":"us-central1","id":"us-central1-nextjsFunc"} {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] triggerDefinition {\"httpsTrigger\":{},\"name\":\"nextjsFunc\",\"entryPoint\":\"nextjsFunc\",\"regions\":[\"us-central1\"],\"region\":\"us-central1\",\"id\":\"us-central1-nextjsFunc\"}"}}
[debug] [2021-09-20T03:34:44.673Z] [runtime-status] [53124] Running us-central1-nextjsFunc in mode HTTPS {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Running us-central1-nextjsFunc in mode HTTPS"}}
[debug] [2021-09-20T03:34:44.740Z] [runtime-status] [53124] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53124.sock {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Attempting to listen to socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53124.sock"}}
[debug] [2021-09-20T03:34:44.845Z] [functions] Runtime ready! Sending request! {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Runtime ready! Sending request!"}}
[debug] [2021-09-20T03:34:44.858Z] [functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/profile/manage, mapping to path=/profile/manage {"metadata":{"emulator":{"name":"functions"},"message":"[functions] Got req.url=/eatwell-87d0c/us-central1/nextjsFunc/profile/manage, mapping to path=/profile/manage"}}
[debug] [2021-09-20T03:34:45.058Z] [runtime-status] [53124] Ephemeral server handling GET request {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"[runtime-status] [53124] Ephemeral server handling GET request"}}
[info] > info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5 {"user":"info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m info - Using webpack 5. Reason: no next.config.js https://nextjs.org/docs/messages/webpack5"}}
[warn] ⚠ functions: Your function timed out after ~60s. To configure this timeout, see
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation. {"metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"Your function timed out after ~60s. To configure this timeout, see\n https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation."}}
[info] > /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648 {"user":"/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m /usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648"}}
[info] > throw new Error("Function timed out."); {"user":" throw new Error(\"Function timed out.\");","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m throw new Error(\"Function timed out.\");"}}
[info] > ^ {"user":" ^","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m ^"}}
[info] > {"user":"","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m "}}
[info] > Error: Function timed out. {"user":"Error: Function timed out.","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m Error: Function timed out."}}
[info] > at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19) {"user":" at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at Timeout._onTimeout (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:648:19)"}}
[info] > at listOnTimeout (internal/timers.js:557:17) {"user":" at listOnTimeout (internal/timers.js:557:17)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at listOnTimeout (internal/timers.js:557:17)"}}
[info] > at processTimers (internal/timers.js:500:7) {"user":" at processTimers (internal/timers.js:500:7)","metadata":{"emulator":{"name":"functions"},"function":{"name":"us-central1-nextjsFunc"},"message":"\u001b[90m> \u001b[39m at processTimers (internal/timers.js:500:7)"}}
[debug] [2021-09-20T03:35:36.012Z] [worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: exited {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: exited"}}
[debug] [2021-09-20T03:35:36.378Z] [worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: FINISHED {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-0e720064-7a73-48c5-baac-74f31c78788e]: FINISHED"}}
[debug] [2021-09-20T03:35:36.381Z] [work-queue] {"queueLength":0,"workRunningCount":4}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:35:38 +0000] "GET /api/recipes/getAllRecipesDic HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:35:38 +0000] \"GET /api/recipes/getAllRecipesDic HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:35:38 +0000] "GET /api/programs/getAllProgramsDic HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:35:38 +0000] \"GET /api/programs/getAllProgramsDic HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:35:39 +0000] "GET /_next/static/development/_devPagesManifest.json HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:35:39 +0000] \"GET /_next/static/development/_devPagesManifest.json HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=resolveDynamicRoute&arguments=&lineNumber=276&column=14 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:41.857Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=resolveDynamicRoute&arguments=&lineNumber=276&column=14
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=Router._callee%24&arguments=&lineNumber=740&column=39 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:42.004Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=Router._callee%24&arguments=&lineNumber=740&column=39
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=tryCatch&arguments=&lineNumber=63&column=40 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:42.008Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=tryCatch&arguments=&lineNumber=63&column=40
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.invoke+%5Bas+_invoke%5D&arguments=&lineNumber=293&column=22 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:42.026Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.invoke+%5Bas+_invoke%5D&arguments=&lineNumber=293&column=22
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.eval+%5Bas+next%5D&arguments=&lineNumber=118&column=21 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:42.032Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.eval+%5Bas+next%5D&arguments=&lineNumber=118&column=21
[debug] [2021-09-20T03:35:42.082Z] [work-queue] {"queueLength":1,"workRunningCount":4}
[debug] [2021-09-20T03:35:42.083Z] [work-queue] {"queueLength":0,"workRunningCount":5}
[debug] [2021-09-20T03:35:42.083Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=Router._callee%24&arguments=&lineNumber=740&column=39 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:42.086Z] [worker-pool] Cleaned up workers for us-central1-nextjsFunc: 5 --> 4 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Cleaned up workers for us-central1-nextjsFunc: 5 --> 4"}}
[debug] [2021-09-20T03:35:42.370Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.371Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=5 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=5"}}
[debug] [2021-09-20T03:35:42.371Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.373Z] [worker-us-central1-nextjsFunc-620fc5a7-f601-4dc2-8b8c-620de8ec9c21]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53161.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-620fc5a7-f601-4dc2-8b8c-620de8ec9c21]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53161.sock"}}
[debug] [2021-09-20T03:35:42.373Z] [worker-us-central1-nextjsFunc-620fc5a7-f601-4dc2-8b8c-620de8ec9c21]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-620fc5a7-f601-4dc2-8b8c-620de8ec9c21]: BUSY"}}
[debug] [2021-09-20T03:35:42.375Z] [work-queue] {"queueLength":1,"workRunningCount":5}
[debug] [2021-09-20T03:35:42.375Z] [work-queue] {"queueLength":0,"workRunningCount":6}
[debug] [2021-09-20T03:35:42.375Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fdist%2Fnext-server%2Flib%2Frouter%2Frouter.js&methodName=resolveDynamicRoute&arguments=&lineNumber=276&column=14 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:42.446Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.446Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=6 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=6"}}
[debug] [2021-09-20T03:35:42.446Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.446Z] [worker-us-central1-nextjsFunc-359ec3e1-58f4-4e00-a266-9ea5d213c7e4]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53162.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-359ec3e1-58f4-4e00-a266-9ea5d213c7e4]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53162.sock"}}
[debug] [2021-09-20T03:35:42.446Z] [worker-us-central1-nextjsFunc-359ec3e1-58f4-4e00-a266-9ea5d213c7e4]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-359ec3e1-58f4-4e00-a266-9ea5d213c7e4]: BUSY"}}
[debug] [2021-09-20T03:35:42.447Z] [work-queue] {"queueLength":1,"workRunningCount":6}
[debug] [2021-09-20T03:35:42.447Z] [work-queue] {"queueLength":0,"workRunningCount":7}
[debug] [2021-09-20T03:35:42.448Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=tryCatch&arguments=&lineNumber=63&column=40 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:42.472Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.472Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=7 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=7"}}
[debug] [2021-09-20T03:35:42.472Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.473Z] [worker-us-central1-nextjsFunc-7237845e-e155-4ceb-a7c9-cb10b3193f8f]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53163.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-7237845e-e155-4ceb-a7c9-cb10b3193f8f]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53163.sock"}}
[debug] [2021-09-20T03:35:42.473Z] [worker-us-central1-nextjsFunc-7237845e-e155-4ceb-a7c9-cb10b3193f8f]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-7237845e-e155-4ceb-a7c9-cb10b3193f8f]: BUSY"}}
[debug] [2021-09-20T03:35:42.474Z] [work-queue] {"queueLength":1,"workRunningCount":7}
[debug] [2021-09-20T03:35:42.474Z] [work-queue] {"queueLength":0,"workRunningCount":8}
[debug] [2021-09-20T03:35:42.474Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.invoke+%5Bas+_invoke%5D&arguments=&lineNumber=293&column=22 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:42.488Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.488Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=8 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=8"}}
[debug] [2021-09-20T03:35:42.488Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.488Z] [worker-us-central1-nextjsFunc-95183fba-f82f-4720-8b71-89a24340dab1]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53164.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-95183fba-f82f-4720-8b71-89a24340dab1]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53164.sock"}}
[debug] [2021-09-20T03:35:42.488Z] [worker-us-central1-nextjsFunc-95183fba-f82f-4720-8b71-89a24340dab1]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-95183fba-f82f-4720-8b71-89a24340dab1]: BUSY"}}
[debug] [2021-09-20T03:35:42.489Z] [work-queue] {"queueLength":1,"workRunningCount":8}
[debug] [2021-09-20T03:35:42.490Z] [work-queue] {"queueLength":0,"workRunningCount":9}
[debug] [2021-09-20T03:35:42.490Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fregenerator-runtime%2Fruntime.js&methodName=Generator.eval+%5Bas+next%5D&arguments=&lineNumber=118&column=21 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:42.507Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.508Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=9 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=9"}}
[debug] [2021-09-20T03:35:42.508Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:42.509Z] [worker-us-central1-nextjsFunc-9c4a58ab-1c28-41c1-9322-7c6278188a97]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53165.sock {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9c4a58ab-1c28-41c1-9322-7c6278188a97]: Assigning socketPath: /var/folders/sz/8fv5f4yn7fqf5zy0jx8m8qn00000gn/T/fire_emu_53165.sock"}}
[debug] [2021-09-20T03:35:42.509Z] [worker-us-central1-nextjsFunc-9c4a58ab-1c28-41c1-9322-7c6278188a97]: BUSY {"metadata":{"emulator":{"name":"functions"},"message":"[worker-us-central1-nextjsFunc-9c4a58ab-1c28-41c1-9322-7c6278188a97]: BUSY"}}
[info] i hosting: 127.0.0.1 - - [20/Sep/2021:03:35:42 +0000] "GET /profile/manage HTTP/1.1" 504 - "http://localhost:5000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36" {"metadata":{"emulator":{"name":"hosting"},"message":"127.0.0.1 - - [20/Sep/2021:03:35:42 +0000] \"GET /profile/manage HTTP/1.1\" 504 - \"http://localhost:5000/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\""}}
[info] [hosting] Rewriting /__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fnode_modules%2F%40babel%2Fruntime%2Fhelpers%2FasyncToGenerator.js&methodName=asyncGeneratorStep&arguments=&lineNumber=3&column=24 to http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc for local Function nextjsFunc
[debug] [2021-09-20T03:35:43.033Z] >>> [apiv2][query] GET http://localhost:5001/eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fnode_modules%2F%40babel%2Fruntime%2Fhelpers%2FasyncToGenerator.js&methodName=asyncGeneratorStep&arguments=&lineNumber=3&column=24
[debug] [2021-09-20T03:35:43.038Z] [work-queue] {"queueLength":1,"workRunningCount":9}
[debug] [2021-09-20T03:35:43.038Z] [work-queue] {"queueLength":0,"workRunningCount":10}
[debug] [2021-09-20T03:35:43.038Z] Accepted request GET /eatwell-87d0c/us-central1/nextjsFunc/__nextjs_original-stack-frame?isServerSide=false&file=webpack-internal%3A%2F%2F%2F.%2Fnode_modules%2Fnext%2Fnode_modules%2F%40babel%2Fruntime%2Fhelpers%2FasyncToGenerator.js&methodName=asyncGeneratorStep&arguments=&lineNumber=3&column=24 --> us-central1-nextjsFunc
[debug] [2021-09-20T03:35:43.052Z] [worker-pool] addWorker(us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] addWorker(us-central1-nextjsFunc)"}}
[debug] [2021-09-20T03:35:43.053Z] [worker-pool] Adding worker with key us-central1-nextjsFunc, total=10 {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] Adding worker with key us-central1-nextjsFunc, total=10"}}
[debug] [2021-09-20T03:35:43.053Z] [worker-pool] submitWork(triggerId=us-central1-nextjsFunc) {"metadata":{"emulator":{"name":"functions"},"message":"[worker-pool] submitWork(triggerId=us-central1-nextjsFunc)"}}