-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataconnect-debug.log
More file actions
1229 lines (1229 loc) · 364 KB
/
dataconnect-debug.log
File metadata and controls
1229 lines (1229 loc) · 364 KB
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
I0913 21:22:41.228791 18904 load.go:37] Reloading schema and connectors...
I0913 21:22:41.297922 18904 control.go:84] [/emulator/nakevlink-dataconnect ba66] UpdateResources(): done
Schema: sources: schema\schema.gql [1977B]
Connector "nakevlink-connector": sources: connector\mutations.gql [2311B] connector\queries.gql [7296B]
I0913 21:22:41.345503 18904 codegen.go:82] [connector "nakevlink-connector" javascriptSdk] Generating sources into "C:\\Projects\\nakevlink\\web-app\\src\\lib\\dataconnect"
I0913 21:22:41.365000 18904 collector.go:107] schema extensions wrote into "C:\\Projects\\nakevlink\\dataconnect\\.dataconnect\\schema"
Generated sources: prelude.gql [73172B] main\input.gql [53918B] main\relation.gql [27012B] main\query.gql [6899B] main\mutation.gql [18150B]
I0913 21:22:41.371862 18904 collector.go:107] connector "nakevlink-connector" javascriptSdk wrote into "C:\\Projects\\nakevlink\\web-app\\src\\lib\\dataconnect"
Generated sources: esm\package.json [17B] index.cjs.js [13993B] package.json [638B] README.md [135474B] index.d.ts [32269B] esm\index.esm.js [11985B]
I0913 21:22:41.371862 18904 installsdk.go:138] generate.javascriptSdk.packageJsonDir is not specified, skipping automatic installation of JS package
I0913 21:22:41.371862 18904 load.go:115] Finished reloading
I0913 21:22:41.374658 18904 dev.go:95] Listening on address (HTTP + gRPC): 127.0.0.1:9399
I0913 21:22:41.375198 18904 dev.go:95] Listening on address (HTTP + gRPC): [::1]:9399
I0913 21:22:45.550889 18904 migrate.go:24] Running migration SQL:
Step 1: CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
Step 2: CREATE TABLE "public"."business" ("id" text NOT NULL DEFAULT replace((uuid_generate_v4())::text, '-'::text, ''::text), "address" text NULL, "category_id" integer NOT NULL, "contact_name" text NULL, "created_datetime" timestamptz NULL, "description" text NULL, "email" text NULL, "expiration_duration_in_days" integer NULL, "image" text NULL, "name" text NOT NULL, "phone_number" text NULL, "punch_num" integer NULL, PRIMARY KEY ("id"))
Step 3: CREATE TABLE "public"."user" ("id" text NOT NULL, "created_datetime" timestamptz NULL, "email" text NOT NULL, "favorite_category" integer NULL, "name" text NOT NULL, PRIMARY KEY ("id"))
Step 4: CREATE UNIQUE INDEX "user_email_uidx" ON "public"."user" ("email")
Step 5: CREATE TABLE "public"."punch_card" ("id" text NOT NULL DEFAULT replace((uuid_generate_v4())::text, '-'::text, ''::text), "business_id" text NOT NULL, "user_id" text NOT NULL, "created_at" timestamptz NULL, "expires_at" timestamptz NOT NULL, "max_punches" integer NOT NULL, PRIMARY KEY ("id"), CONSTRAINT "punch_card_business_id_fkey" FOREIGN KEY ("business_id") REFERENCES "public"."business" ("id") ON DELETE CASCADE, CONSTRAINT "punch_card_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "public"."user" ("id") ON DELETE CASCADE)
Step 6: CREATE INDEX "punch_card_businessId_idx" ON "public"."punch_card" ("business_id")
Step 7: CREATE INDEX "punch_card_userId_idx" ON "public"."punch_card" ("user_id")
Step 8: CREATE TABLE "public"."punch" ("id" text NOT NULL DEFAULT replace((uuid_generate_v4())::text, '-'::text, ''::text), "card_id" text NOT NULL, "punch_time" timestamptz NULL, PRIMARY KEY ("id"), CONSTRAINT "punch_card_id_fkey" FOREIGN KEY ("card_id") REFERENCES "public"."punch_card" ("id") ON DELETE CASCADE)
Step 9: CREATE INDEX "punch_cardId_idx" ON "public"."punch" ("card_id")
Step 10: CREATE TABLE "public"."punch_code" ("id" text NOT NULL DEFAULT replace((uuid_generate_v4())::text, '-'::text, ''::text), "business_id" text NOT NULL, "card_id" text NOT NULL, "user_id" text NOT NULL, "code" text NOT NULL, "created_at" timestamptz NULL, "expires_at" timestamptz NOT NULL, "is_used" boolean NULL DEFAULT false, "used_at" timestamptz NULL, PRIMARY KEY ("id"), CONSTRAINT "punch_code_business_id_fkey" FOREIGN KEY ("business_id") REFERENCES "public"."business" ("id") ON DELETE CASCADE, CONSTRAINT "punch_code_card_id_fkey" FOREIGN KEY ("card_id") REFERENCES "public"."punch_card" ("id") ON DELETE CASCADE, CONSTRAINT "punch_code_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "public"."user" ("id") ON DELETE CASCADE)
Step 11: CREATE INDEX "punch_code_businessId_idx" ON "public"."punch_code" ("business_id")
Step 12: CREATE INDEX "punch_code_cardId_idx" ON "public"."punch_code" ("card_id")
Step 13: CREATE INDEX "punch_code_userId_idx" ON "public"."punch_code" ("user_id")
Step 14: CREATE UNIQUE INDEX "punch_code_code_uidx" ON "public"."punch_code" ("code")
I0913 21:22:45.697029 18904 control.go:84] [/emulator/nakevlink-dataconnect f26a] UpdateResources(): done
Schema: sources: schema\schema.gql [1977B]
Connector "nakevlink-connector": sources: connector\mutations.gql [2311B] connector\queries.gql [7296B]
I0913 21:24:10.512843 18904 prepare.go:129] [operation "GetBusinessByEmail" attempt 1] preparePlan succeeded
I0913 21:24:10.514240 18904 prepare.go:129] [operation "CreateUser" attempt 1] preparePlan succeeded
I0913 21:24:10.514768 18904 prepare.go:120] [operation "CreateUser" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:0, WaitDuration:0, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:1, WaitDuration:2516500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.514768 18904 prepare.go:120] [operation "GetBusinessByEmail" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:0, WaitDuration:0, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:1, WaitDuration:2516500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.520659 18904 executor.go:90] [operation "CreateUser" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:1, WaitDuration:2516500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:2, WaitDuration:6753800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.521195 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteMutation CreateUser: succeeded. Connector: nakevlink-connector
I0913 21:24:10.521710 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:1, WaitDuration:2516500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:2, WaitDuration:6753800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.521710 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0913 21:24:10.792265 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:2, WaitDuration:6753800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:3, WaitDuration:10300500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.792265 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0913 21:24:10.794942 18904 prepare.go:129] [operation "GetUserPunchCards" attempt 1] preparePlan succeeded
I0913 21:24:10.794942 18904 prepare.go:120] [operation "GetUserPunchCards" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:2, WaitDuration:6753800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:3, WaitDuration:10300500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.797003 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:3, WaitDuration:10300500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:4, WaitDuration:12360800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.797003 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:10.799922 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:3, WaitDuration:10300500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:4, WaitDuration:12360800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:10.800591 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:13.306748 18904 prepare.go:129] [operation "GetAllBusinesses" attempt 1] preparePlan succeeded
I0913 21:24:13.306748 18904 prepare.go:120] [operation "GetAllBusinesses" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:4, WaitDuration:12360800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:5, WaitDuration:13534200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.309271 18904 prepare.go:129] [operation "GetUserForRecommendations" attempt 1] preparePlan succeeded
I0913 21:24:13.309271 18904 prepare.go:120] [operation "GetUserForRecommendations" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:4, WaitDuration:12360800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:7, WaitDuration:13534200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.313811 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:6, WaitDuration:13534200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:9, WaitDuration:16057400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.313811 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:13.315955 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:5, WaitDuration:13534200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:9, WaitDuration:23120200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.316568 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:13.321900 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:8, WaitDuration:16057400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.321900 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0913 21:24:13.324228 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:7, WaitDuration:16057400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.324228 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0913 21:24:13.372681 18904 prepare.go:129] [operation "GetBusinessesForRecommendations" attempt 1] preparePlan succeeded
I0913 21:24:13.372681 18904 prepare.go:120] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.376843 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:10, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.376843 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0913 21:24:13.379160 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:9, WaitDuration:42534800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:10, WaitDuration:46697700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:13.379673 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0913 21:24:14.610590 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:10, WaitDuration:46697700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:11, WaitDuration:46697700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:14.610590 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:14.612672 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:10, WaitDuration:46697700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:11, WaitDuration:48752500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:14.612672 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:17.203680 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:11, WaitDuration:48752500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:12, WaitDuration:48752500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:17.203680 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:17.208354 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:11, WaitDuration:48752500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:12, WaitDuration:51401600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:17.208354 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:17.894085 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:12, WaitDuration:51401600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:13, WaitDuration:51401600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:17.894085 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:17.897804 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:12, WaitDuration:51401600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:13, WaitDuration:53948300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:17.897804 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:18.969125 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:13, WaitDuration:53948300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:14, WaitDuration:53948300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:18.969125 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:18.971615 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:13, WaitDuration:53948300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:14, WaitDuration:56448900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:18.971615 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:26.361295 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:14, WaitDuration:56448900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:15, WaitDuration:56448900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:26.361295 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:26.363489 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:14, WaitDuration:56448900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:15, WaitDuration:58556800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:26.363489 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:28.506924 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:15, WaitDuration:58556800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:16, WaitDuration:58556800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:28.506924 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:28.516459 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:15, WaitDuration:58556800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:16, WaitDuration:64180100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:28.516459 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:32.585466 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:16, WaitDuration:64180100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:17, WaitDuration:64180100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:32.586177 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:32.588505 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:16, WaitDuration:64180100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:17, WaitDuration:65817500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:32.588505 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0913 21:24:32.921617 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:17, WaitDuration:65817500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:18, WaitDuration:65817500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:32.921617 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0913 21:24:32.923571 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:17, WaitDuration:65817500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:18, WaitDuration:67713300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0913 21:24:32.923571 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:43:26.336814 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:18, WaitDuration:67713300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:20, WaitDuration:351679100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:43:26.341175 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:43:26.343094 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:18, WaitDuration:67713300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:20, WaitDuration:351679100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:43:26.344418 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:43:26.416067 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:18, WaitDuration:67713300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:20, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:43:26.416673 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:46:07.857040 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:20, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:20, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:46:07.857040 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:46:08.274378 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:20, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:21, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:46:08.274378 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:46:08.279121 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:20, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:22, WaitDuration:651243800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:46:08.279121 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:46:08.282725 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:21, WaitDuration:650605500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:22, WaitDuration:655986900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:46:08.282725 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:48:02.015956 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:22, WaitDuration:655986900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:23, WaitDuration:655986900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:48:02.015956 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:48:02.021356 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:22, WaitDuration:655986900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:25, WaitDuration:666135900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:48:02.021356 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:48:02.038543 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:23, WaitDuration:666135900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:25, WaitDuration:671027800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:48:02.038543 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:48:02.044727 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:24, WaitDuration:666135900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:25, WaitDuration:693106800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:48:02.044727 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:10.332216 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:25, WaitDuration:693106800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:28, WaitDuration:695640800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.332216 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:10.350685 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:25, WaitDuration:693106800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:28, WaitDuration:695640800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.350685 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:50:10.351747 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:26, WaitDuration:693106800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:28, WaitDuration:714704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.352298 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:10.356230 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:27, WaitDuration:693106800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:28, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.356230 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:50:10.406409 18904 prepare.go:129] [operation "GetPopularBusinesses" attempt 1] preparePlan succeeded
I0914 12:50:10.408464 18904 prepare.go:120] [operation "GetPopularBusinesses" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:28, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:28, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.422801 18904 executor.go:90] [operation "GetPopularBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:28, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:29, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.422801 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPopularBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:10.426825 18904 executor.go:90] [operation "GetPopularBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:28, WaitDuration:734830200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:29, WaitDuration:748102900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:10.426825 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPopularBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:18.546712 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:29, WaitDuration:748102900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:30, WaitDuration:748102900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:18.546712 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:18.552446 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:29, WaitDuration:748102900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:30, WaitDuration:754510300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:18.552446 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:19.160464 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:30, WaitDuration:754510300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:32, WaitDuration:754510300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.160464 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:19.167896 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:31, WaitDuration:754510300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:33, WaitDuration:759829600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.168289 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:50:19.176412 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:32, WaitDuration:759829600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:33, WaitDuration:764469900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.176412 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:19.184976 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:30, WaitDuration:754510300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.184976 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:50:19.233559 18904 executor.go:90] [operation "GetPopularBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.233559 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPopularBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:19.251454 18904 executor.go:90] [operation "GetPopularBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:19.251454 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPopularBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:50:20.386379 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:34, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:20.386379 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:20.392959 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:33, WaitDuration:787641900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:34, WaitDuration:796551500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:20.392959 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:24.325278 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:34, WaitDuration:796551500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:24.325278 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:50:24.339179 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:34, WaitDuration:796551500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:50:24.339179 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:52:39.156584 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:52:39.156584 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:52:39.414701 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:37, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:52:39.414701 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:52:39.419525 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:35, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:37, WaitDuration:807304100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:52:39.419525 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:52:39.426746 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:36, WaitDuration:805270400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:37, WaitDuration:814162000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:52:39.426746 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:53:42.405380 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:37, WaitDuration:814162000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:38, WaitDuration:814162000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:53:42.405380 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:53:42.411592 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:37, WaitDuration:814162000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:38, WaitDuration:819588900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:53:42.411592 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:02.399130 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:38, WaitDuration:819588900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:39, WaitDuration:819588900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:02.399130 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:02.407606 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:38, WaitDuration:819588900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:39, WaitDuration:824630800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:02.407606 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:13.405476 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:39, WaitDuration:824630800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:40, WaitDuration:824630800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:13.406272 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:13.410797 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:39, WaitDuration:824630800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:40, WaitDuration:829187400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:13.410797 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:20.407160 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:40, WaitDuration:829187400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:41, WaitDuration:829187400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:20.407160 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:20.411348 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:40, WaitDuration:829187400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:41, WaitDuration:832136100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:20.411348 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:27.390600 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:41, WaitDuration:832136100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:42, WaitDuration:832136100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:27.391093 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:27.401278 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:41, WaitDuration:832136100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:42, WaitDuration:836011700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:27.401278 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:33.399991 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:42, WaitDuration:836011700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:43, WaitDuration:836011700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:33.399991 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:33.405531 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:42, WaitDuration:836011700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:43, WaitDuration:841244400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:33.406122 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:40.394930 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:43, WaitDuration:841244400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:44, WaitDuration:841244400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:40.394930 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:54:40.400092 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:43, WaitDuration:841244400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:44, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:54:40.400428 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:55:32.727345 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:44, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:44, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:55:32.727345 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:55:33.084261 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:44, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:46, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:55:33.084261 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:55:33.089197 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:44, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:46, WaitDuration:848719400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:55:33.089197 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:55:33.096167 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:45, WaitDuration:846985200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:46, WaitDuration:854780500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:55:33.096167 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:56:22.457496 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:46, WaitDuration:854780500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:47, WaitDuration:854780500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:22.457496 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:56:22.463640 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:46, WaitDuration:854780500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:47, WaitDuration:857547000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:22.463640 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:56:22.491395 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:47, WaitDuration:857547000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:48, WaitDuration:857547000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:22.491395 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:56:22.504797 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:47, WaitDuration:857547000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:48, WaitDuration:869466800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:22.504797 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:56:49.411018 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:48, WaitDuration:869466800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:49, WaitDuration:869466800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:49.411018 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:56:49.427057 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:48, WaitDuration:869466800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:56:49.427057 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:59:08.140901 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.140901 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:08.484022 18904 prepare.go:129] [operation "CreateBusiness" attempt 1] preparePlan succeeded
I0914 12:59:08.484022 18904 prepare.go:120] [operation "CreateBusiness" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.599316 18904 executor.go:90] [operation "CreateBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.599316 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteMutation CreateBusiness: succeeded. Connector: nakevlink-connector
I0914 12:59:08.788114 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.788114 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:08.796193 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:49, WaitDuration:875081600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.796787 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:08.817596 18904 prepare.go:129] [operation "GetBusinessPunchCards" attempt 1] preparePlan succeeded
I0914 12:59:08.817596 18904 prepare.go:120] [operation "GetBusinessPunchCards" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.820535 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:51, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.821086 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:59:08.825313 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:50, WaitDuration:889646900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:51, WaitDuration:892585800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:08.825313 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:59:25.832319 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:51, WaitDuration:892585800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:53, WaitDuration:892585800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.832319 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:25.839450 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:51, WaitDuration:892585800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:54, WaitDuration:900250600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.839450 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:25.850362 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:53, WaitDuration:900250600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:54, WaitDuration:906838000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.850362 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:25.856907 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:52, WaitDuration:892585800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.856907 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 12:59:25.868960 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.868960 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:59:25.876540 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:25.876540 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 12:59:42.139249 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:57, WaitDuration:931040800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.139249 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:59:42.143120 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:55, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:57, WaitDuration:938232900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.143120 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:59:42.146013 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:54, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:57, WaitDuration:948318600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.146013 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:59:42.148809 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:56, WaitDuration:928230800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:57, WaitDuration:948318600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.148809 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 12:59:42.179944 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:57, WaitDuration:948318600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:58, WaitDuration:951695000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.179944 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 12:59:42.184634 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:57, WaitDuration:948318600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:58, WaitDuration:951695000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 12:59:42.184634 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:00:02.897346 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:58, WaitDuration:951695000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:59, WaitDuration:955827200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:02.897346 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:02.908824 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:58, WaitDuration:951695000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:02.909388 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:02.914755 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:59, WaitDuration:955827200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:02.914755 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:02.926672 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:02.926672 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:10.884975 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:61, WaitDuration:963377000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:10.884975 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:10.895684 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:60, WaitDuration:957939100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:62, WaitDuration:963377000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:10.895684 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:10.902775 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:61, WaitDuration:963377000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:62, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:10.902775 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:10.910957 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:62, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:62, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:10.910957 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:22.925297 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:62, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:63, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:22.925297 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:22.933071 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:62, WaitDuration:964636800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:63, WaitDuration:968843800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:22.933071 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:36.610771 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:63, WaitDuration:968843800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:64, WaitDuration:968843800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:36.610771 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:36.622667 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:63, WaitDuration:968843800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:36.622667 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:00:36.628203 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:36.628864 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:00:36.648221 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:00:36.648221 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:02:59.635871 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:02:59.636639 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:02:59.658777 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:02:59.658777 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:05.996543 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:65, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:05.996543 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:03:06.006196 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:64, WaitDuration:973749500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:65, WaitDuration:975995900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:06.006817 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:03:07.458417 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:65, WaitDuration:975995900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:66, WaitDuration:975995900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:07.458417 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:07.466740 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:65, WaitDuration:975995900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:66, WaitDuration:980270800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:07.466740 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:09.592909 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:66, WaitDuration:980270800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:67, WaitDuration:980270800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:09.592909 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:09.602320 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:66, WaitDuration:980270800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:67, WaitDuration:985411800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:09.602320 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:10.717955 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:67, WaitDuration:985411800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:68, WaitDuration:985411800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:10.717955 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:10.724623 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:67, WaitDuration:985411800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:68, WaitDuration:989303500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:10.724623 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:11.264714 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:68, WaitDuration:989303500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:69, WaitDuration:989303500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:11.264714 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:03:11.279739 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:68, WaitDuration:989303500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:69, WaitDuration:995247500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:11.279739 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:03:11.583178 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:69, WaitDuration:995247500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:70, WaitDuration:995247500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:11.583178 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:11.590132 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:69, WaitDuration:995247500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:11.590132 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:03:57.303021 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:57.303689 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:03:57.469451 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:03:57.469962 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:04:14.767462 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:71, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:04:14.767462 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:04:14.771854 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:70, WaitDuration:1000966200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:04:14.771854 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:04:14.784273 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:04:14.784273 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:04:14.792360 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:04:14.792360 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:05:10.919770 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:10.919770 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:05:13.982923 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:72, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:13.982923 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:05:13.992543 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:71, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:73, WaitDuration:1012163100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:13.992543 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:05:14.001879 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:72, WaitDuration:1005461000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:74, WaitDuration:1020492000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:14.001879 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:05:14.013870 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:73, WaitDuration:1020492000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:74, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:14.013870 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:05:14.084305 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:74, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:14.084906 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:05:14.092196 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:74, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:14.092753 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:05:16.715296 18904 prepare.go:129] [operation "GetBusiness" attempt 1] preparePlan succeeded
I0914 13:05:16.715296 18904 prepare.go:120] [operation "GetBusiness" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.725138 18904 executor.go:90] [operation "GetBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:76, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.725138 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusiness: succeeded. Connector: nakevlink-connector
I0914 13:05:16.746496 18904 executor.go:90] [operation "GetBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:75, WaitDuration:1027619700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:76, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.746496 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusiness: succeeded. Connector: nakevlink-connector
I0914 13:05:16.768613 18904 prepare.go:129] [operation "GetActiveUserPunchCardForBusiness" attempt 1] preparePlan succeeded
I0914 13:05:16.768613 18904 prepare.go:120] [operation "GetActiveUserPunchCardForBusiness" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:76, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:76, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.774238 18904 executor.go:90] [operation "GetActiveUserPunchCardForBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:76, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:77, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.774238 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetActiveUserPunchCardForBusiness: succeeded. Connector: nakevlink-connector
I0914 13:05:16.778033 18904 executor.go:90] [operation "GetActiveUserPunchCardForBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:76, WaitDuration:1037844300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:77, WaitDuration:1043468900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:16.778547 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetActiveUserPunchCardForBusiness: succeeded. Connector: nakevlink-connector
I0914 13:05:28.106588 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:77, WaitDuration:1043468900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:78, WaitDuration:1043468900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:28.106588 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:05:28.118837 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:77, WaitDuration:1043468900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:78, WaitDuration:1048474900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:28.118837 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:05:36.151882 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:78, WaitDuration:1048474900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:79, WaitDuration:1048474900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:36.151882 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:05:36.157611 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:78, WaitDuration:1048474900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:36.157611 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:05:37.555431 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:05:37.555431 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:13:43.787277 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:13:43.787277 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:13:43.815440 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:80, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:13:43.815440 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:13:43.821853 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:79, WaitDuration:1051608100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:80, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:13:43.822408 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:14:44.640447 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:80, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:83, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.641035 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:14:44.652845 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:82, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:83, WaitDuration:1057981500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.654369 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:14:44.662146 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:80, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:84, WaitDuration:1077681100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.662146 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:14:44.671711 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:81, WaitDuration:1054476100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:85, WaitDuration:1109125100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.671711 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:14:44.681013 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:84, WaitDuration:1103036700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:85, WaitDuration:1109125100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.681013 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:14:44.688789 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:83, WaitDuration:1077681100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:85, WaitDuration:1135768400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:44.688789 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:14:45.554338 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:85, WaitDuration:1135768400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:86, WaitDuration:1135768400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:45.554960 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:14:45.562362 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:85, WaitDuration:1135768400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:86, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:14:45.562362 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:17:45.798429 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:86, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:86, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:17:45.798429 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:17:45.825213 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:86, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:87, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:17:45.825800 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:17:45.832441 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:86, WaitDuration:1141684600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:17:45.832441 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:17:45.840369 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:17:45.840736 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:17:45.845688 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:17:45.845688 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:18:12.302031 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:88, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:12.302031 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:18:12.308835 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:87, WaitDuration:1143550400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:88, WaitDuration:1145430900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:12.308835 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:18:12.423675 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:88, WaitDuration:1145430900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:89, WaitDuration:1145430900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:12.423675 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:18:12.430490 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:88, WaitDuration:1145430900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:90, WaitDuration:1148082200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:12.430490 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:18:12.440834 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:89, WaitDuration:1145430900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:90, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:12.440834 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:18:37.203265 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:90, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:93, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.203265 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:18:37.212868 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:92, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:93, WaitDuration:1156981200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.212868 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:18:37.224429 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:91, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:93, WaitDuration:1168113500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.224429 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:18:37.234802 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:90, WaitDuration:1154897300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:93, WaitDuration:1191321500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.234802 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:18:37.300342 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:93, WaitDuration:1191321500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:94, WaitDuration:1194986100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.300342 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:18:37.304808 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:93, WaitDuration:1191321500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:94, WaitDuration:1194986100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:37.304808 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:18:53.548816 18904 executor.go:90] [operation "GetBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:94, WaitDuration:1194986100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:53.548816 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusiness: succeeded. Connector: nakevlink-connector
I0914 13:18:53.555216 18904 executor.go:90] [operation "GetBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:94, WaitDuration:1194986100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:53.555216 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusiness: succeeded. Connector: nakevlink-connector
I0914 13:18:53.577244 18904 executor.go:90] [operation "GetActiveUserPunchCardForBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:53.577244 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetActiveUserPunchCardForBusiness: succeeded. Connector: nakevlink-connector
I0914 13:18:53.587264 18904 executor.go:90] [operation "GetActiveUserPunchCardForBusiness" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:53.587773 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetActiveUserPunchCardForBusiness: succeeded. Connector: nakevlink-connector
I0914 13:18:55.261889 18904 prepare.go:129] [operation "CreatePunchCard" attempt 1] preparePlan succeeded
I0914 13:18:55.261889 18904 prepare.go:120] [operation "CreatePunchCard" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.324363 18904 executor.go:90] [operation "CreatePunchCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.324363 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteMutation CreatePunchCard: succeeded. Connector: nakevlink-connector
I0914 13:18:55.384509 18904 prepare.go:129] [operation "GetPunchCardById" attempt 1] preparePlan succeeded
I0914 13:18:55.384509 18904 prepare.go:120] [operation "GetPunchCardById" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.393972 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:96, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.393972 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 13:18:55.408932 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:95, WaitDuration:1235557400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:96, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.408932 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 13:18:55.421723 18904 prepare.go:129] [operation "GetPunchesForCard" attempt 1] preparePlan succeeded
I0914 13:18:55.421723 18904 prepare.go:120] [operation "GetPunchesForCard" attempt 1] DBStats beforePrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:96, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterPrepare: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:96, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.438015 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:96, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:97, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.438538 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:18:55.442488 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:96, WaitDuration:1245020300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:18:55.443008 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:19:45.162553 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:45.162553 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 13:19:45.174986 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:45.174986 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:19:47.330233 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:98, WaitDuration:1259625300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:47.330233 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:19:47.337181 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:97, WaitDuration:1256427200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:99, WaitDuration:1259625300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:47.337716 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:19:47.340925 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:98, WaitDuration:1259625300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:47.340925 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:19:47.347464 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:19:47.347464 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:20:45.807713 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:20:45.807713 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:20:45.823166 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:20:45.823166 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:23:39.394468 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:23:39.394468 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:23:39.407188 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:23:39.407839 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:24:40.271511 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:40.272024 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:24:40.290910 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:40.290910 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:24:43.150118 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:101, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:43.150118 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:24:43.158917 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:100, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:101, WaitDuration:1275086200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:43.159655 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:24:43.175017 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:99, WaitDuration:1260160700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:101, WaitDuration:1275086200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:43.177583 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:24:43.201536 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:101, WaitDuration:1275086200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:102, WaitDuration:1275086200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:43.201536 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:24:43.207002 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:101, WaitDuration:1275086200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:102, WaitDuration:1275672100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:43.207002 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:24:58.335308 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:102, WaitDuration:1275672100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:104, WaitDuration:1275672100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:58.335308 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:24:58.343931 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:102, WaitDuration:1275672100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:58.343931 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:24:58.355643 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:103, WaitDuration:1275672100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:58.355643 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:24:58.370785 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:58.371576 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:24:58.387520 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:24:58.387520 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:25:03.945192 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:106, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:25:03.945192 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:25:03.952433 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:104, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:106, WaitDuration:1293205300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:25:03.952433 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:25:03.959362 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:105, WaitDuration:1290989100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:25:03.959362 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:25:03.964676 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:25:03.964676 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:25:03.972921 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:25:03.972921 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:28:31.825549 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:108, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:28:31.825549 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:28:31.833074 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:107, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:108, WaitDuration:1305331000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:28:31.833074 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:28:31.841448 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:106, WaitDuration:1301558700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:28:31.841448 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:28:31.849081 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:28:31.849081 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:28:31.857136 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:28:31.857136 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:29:15.144687 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:15.144687 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:29:15.163999 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:15.163999 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:29:17.274037 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:110, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:17.274037 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 13:29:17.279237 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:108, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:110, WaitDuration:1320657300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:17.279237 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:29:17.285309 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:109, WaitDuration:1317910400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:17.285309 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:29:17.289332 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:110, WaitDuration:1328604900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:17.289332 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:29:17.296967 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:17.296967 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:29:45.816899 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:45.816899 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:29:45.869942 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:29:45.869942 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:32:25.308808 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:25.308808 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:32:25.322393 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:25.322393 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:32:38.186930 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:112, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:38.186930 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:32:38.195022 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:111, WaitDuration:1329164400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:38.195022 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:32:38.199305 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:38.199305 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:32:38.209836 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:38.209836 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:32:41.061458 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:41.061458 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:32:41.077348 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:32:41.077348 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:33:00.591746 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:115, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.591746 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:33:00.594359 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:112, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:115, WaitDuration:1336926700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.594359 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:33:00.603801 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:113, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:115, WaitDuration:1341846400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.603801 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:33:00.613303 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:114, WaitDuration:1333985600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:115, WaitDuration:1356208800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.613303 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:33:00.651149 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:115, WaitDuration:1356208800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:116, WaitDuration:1356208800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.651149 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:33:00.654908 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:115, WaitDuration:1356208800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:116, WaitDuration:1359799100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:00.654908 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 13:33:15.059376 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:116, WaitDuration:1359799100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:117, WaitDuration:1361882600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:15.059376 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:33:15.066129 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:116, WaitDuration:1359799100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:118, WaitDuration:1361882600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:15.066129 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:33:15.071276 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:117, WaitDuration:1361882600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:118, WaitDuration:1362474000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:15.071631 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:33:15.083070 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:118, WaitDuration:1362474000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:118, WaitDuration:1362474000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:15.083070 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:33:23.175141 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:118, WaitDuration:1362474000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:23.175141 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:33:23.184911 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:118, WaitDuration:1362474000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:23.184911 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:33:23.192899 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:23.192899 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:33:23.200109 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:23.200693 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:33:24.582640 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:120, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:24.582640 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:33:24.587873 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:119, WaitDuration:1366331500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:120, WaitDuration:1369858200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:33:24.587873 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:35:09.708919 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:120, WaitDuration:1369858200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:121, WaitDuration:1369858200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:09.708919 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:35:09.712715 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:120, WaitDuration:1369858200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:09.712715 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:35:09.720620 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:09.720620 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:35:09.727551 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:09.727551 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:35:11.210563 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:122, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:11.211093 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:35:11.214034 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:121, WaitDuration:1371501200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:122, WaitDuration:1373173900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:11.214034 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:35:13.025215 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:122, WaitDuration:1373173900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:123, WaitDuration:1373173900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:13.025215 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:35:13.029533 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:122, WaitDuration:1373173900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:13.029533 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 13:35:13.038759 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:13.038759 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:35:13.042314 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:13.042314 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 13:35:14.314055 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:124, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:14.314055 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 13:35:14.320467 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:123, WaitDuration:1377717200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:124, WaitDuration:1380366700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 13:35:14.320467 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 15:12:54.212071 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:124, WaitDuration:1380366700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:125, WaitDuration:1380366700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.212071 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:12:54.214913 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:124, WaitDuration:1380366700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:125, WaitDuration:1452199900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.215500 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:12:54.260125 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:125, WaitDuration:1452199900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:126, WaitDuration:1482646500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.260125 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:12:54.269456 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:125, WaitDuration:1452199900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:126, WaitDuration:1482646500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.269456 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:12:54.357192 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:126, WaitDuration:1482646500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:127, WaitDuration:1482646500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.357192 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:12:54.361742 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:126, WaitDuration:1482646500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:127, WaitDuration:1486337000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:54.361742 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:12:57.124715 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:127, WaitDuration:1486337000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:128, WaitDuration:1486337000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:57.124715 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:12:57.131544 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:127, WaitDuration:1486337000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:57.132682 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:12:57.150992 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:57.151348 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:12:57.158183 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:12:57.158183 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:13:00.707737 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:13:00.708375 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:13:00.721923 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:13:00.721923 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:34:53.609592 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.609592 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:34:53.622627 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.622627 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:34:53.634376 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:128, WaitDuration:1492520200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.634376 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:34:53.640489 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.640489 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:34:53.650707 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.650707 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:34:53.724699 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.724699 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:34:53.729280 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:131, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.729280 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 15:34:53.737402 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:130, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:131, WaitDuration:1508011000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.737402 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 15:34:53.748657 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:129, WaitDuration:1497674300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:132, WaitDuration:1508011000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.748657 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:34:53.754079 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:131, WaitDuration:1508011000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:132, WaitDuration:1519265700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.754079 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:34:53.852667 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:132, WaitDuration:1519265700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:133, WaitDuration:1519265700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.852667 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:34:53.856100 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:132, WaitDuration:1519265700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:34:53.856100 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:35:34.594787 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:34.594787 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:35:34.634335 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:34.634335 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:41.761216 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:41.761216 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:35:41.773765 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:41.773765 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:45.355662 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:134, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:45.355662 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:35:45.381626 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:133, WaitDuration:1521967900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:135, WaitDuration:1534549700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:45.382626 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:35:45.400102 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:134, WaitDuration:1534549700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:135, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:45.400102 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:45.413199 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:135, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:135, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:45.413199 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:46.343012 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:135, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:136, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:46.343012 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:35:46.364505 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:135, WaitDuration:1539952500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:137, WaitDuration:1545504700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:46.364505 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:35:46.371544 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:136, WaitDuration:1545504700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:137, WaitDuration:1549560400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:46.371544 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:46.384703 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:137, WaitDuration:1549560400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:137, WaitDuration:1549560400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:46.384703 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:59.526618 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:137, WaitDuration:1549560400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:59.526618 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:35:59.530428 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:137, WaitDuration:1549560400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:59.530428 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:35:59.535479 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:59.536043 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:35:59.540647 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:35:59.540647 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:03.556830 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:03.556830 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:03.580104 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:03.580104 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:08.840416 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:139, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:08.840416 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:08.848872 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:138, WaitDuration:1552620600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:08.848872 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:08.858376 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:08.858376 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:08.866000 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:08.866000 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:12.213897 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:140, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:12.213897 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:36:12.225743 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:139, WaitDuration:1557292600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:141, WaitDuration:1563465700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:12.225743 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:36:12.231864 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:140, WaitDuration:1563465700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:141, WaitDuration:1564161900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:12.231864 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:12.242471 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:141, WaitDuration:1564161900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:141, WaitDuration:1564161900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:12.243138 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:23.866976 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:141, WaitDuration:1564161900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:23.866976 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:23.873185 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:141, WaitDuration:1564161900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:23.873185 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:23.880571 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:23.881084 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:23.883881 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:23.883881 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:36:47.001839 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:143, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.001839 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:36:47.015277 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:142, WaitDuration:1566718800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:145, WaitDuration:1569043500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.015277 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:36:47.025356 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:144, WaitDuration:1569043500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:145, WaitDuration:1570072600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.025356 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:36:47.032552 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:143, WaitDuration:1569043500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:145, WaitDuration:1582854100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.032552 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:36:47.050860 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:145, WaitDuration:1582854100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:146, WaitDuration:1582854100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.050860 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:47.058255 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:145, WaitDuration:1582854100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:47.058255 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:36:49.407044 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:49.407044 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:36:49.418392 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:36:49.418392 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:37:09.109316 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:147, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:09.109316 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:37:09.117896 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:146, WaitDuration:1586657200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:09.117896 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:37:09.123946 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:09.124489 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:37:09.132049 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:09.132049 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:37:24.038795 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:148, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:24.038795 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:37:24.043891 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:147, WaitDuration:1592235700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:24.044905 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:37:24.055487 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:24.055487 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:37:24.063476 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:24.064083 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:37:46.498996 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:46.498996 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:37:46.507463 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:37:46.507463 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:38:57.330858 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:149, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:38:57.330858 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:38:57.336272 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:148, WaitDuration:1596911500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:38:57.336272 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:38:57.341595 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:38:57.341595 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:38:57.350997 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:38:57.351558 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:01.977948 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:150, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:01.977948 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:01.984693 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:149, WaitDuration:1599146900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:01.984693 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:01.993122 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:01.993122 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:01.997910 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:01.997910 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:13.155388 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:151, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:13.155388 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:13.158038 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:150, WaitDuration:1603171400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:151, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:13.158038 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:13.169348 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:151, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:13.169348 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:13.172055 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:151, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:13.172055 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:17.582123 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:17.583640 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:41:17.600918 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:17.600918 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:18.842106 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:153, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:18.842106 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:18.850928 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:152, WaitDuration:1605797500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:18.850928 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:18.860108 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:18.860108 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:18.866961 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:18.866961 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:20.187413 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:154, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:20.187413 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:20.192132 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:153, WaitDuration:1608825200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:154, WaitDuration:1611021800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:20.192132 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:30.055895 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:154, WaitDuration:1611021800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:155, WaitDuration:1611021800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:30.055895 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:30.060312 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:154, WaitDuration:1611021800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:30.060312 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:30.068168 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:30.068168 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:30.074089 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:30.074089 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:35.054776 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:156, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:35.054776 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:35.059605 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:155, WaitDuration:1612980600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:156, WaitDuration:1616644000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:35.059605 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:41:35.070753 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:156, WaitDuration:1616644000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:157, WaitDuration:1618704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:35.070753 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:35.076249 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:156, WaitDuration:1616644000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:157, WaitDuration:1618704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:35.076249 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:43.992935 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:157, WaitDuration:1618704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:158, WaitDuration:1618704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:43.992935 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:43.999575 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:157, WaitDuration:1618704700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:43.999575 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:44.004636 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.004636 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:44.014243 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.014243 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:44.884746 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:161, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.884746 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 15:41:44.890609 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:160, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:161, WaitDuration:1624558300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.890609 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:41:44.896756 18904 executor.go:90] [operation "GetUserForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:158, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:161, WaitDuration:1638723000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.896756 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:41:44.900727 18904 executor.go:90] [operation "GetAllBusinesses" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:159, WaitDuration:1622602200, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.900727 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetAllBusinesses: succeeded. Connector: nakevlink-connector
I0914 15:41:44.912544 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.912544 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:41:44.918480 18904 executor.go:90] [operation "GetBusinessesForRecommendations" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:44.918480 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessesForRecommendations: succeeded. Connector: nakevlink-connector
I0914 15:41:46.747393 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:162, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:46.747393 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:46.754564 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:161, WaitDuration:1653448700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:163, WaitDuration:1657373800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:46.754564 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:41:46.759157 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:162, WaitDuration:1657373800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:46.759157 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:41:46.766886 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:41:46.766886 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:42:03.901492 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:03.901492 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:42:03.914774 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:03.914774 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:42:05.406635 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:164, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:05.406635 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:42:05.411979 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:163, WaitDuration:1657962300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:05.411979 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:42:05.420479 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:05.421033 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:42:05.429316 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:05.429316 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:42:28.223477 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:165, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:28.223477 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:42:28.229022 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:164, WaitDuration:1663448600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:165, WaitDuration:1667296300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:28.229022 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:42:28.241052 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:165, WaitDuration:1667296300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:166, WaitDuration:1667296300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:28.241052 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:42:28.245443 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:165, WaitDuration:1667296300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:166, WaitDuration:1670982000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:28.245443 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:42:59.567869 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:166, WaitDuration:1670982000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:167, WaitDuration:1670982000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:59.568388 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:42:59.575827 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:166, WaitDuration:1670982000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:59.575827 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:42:59.581971 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:59.582312 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:42:59.588877 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:42:59.588877 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:01.266756 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:170, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:01.266756 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:01.271335 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:167, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:170, WaitDuration:1678344500, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:01.271335 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:01.277593 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:168, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:170, WaitDuration:1698403700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:01.277593 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:01.281941 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:169, WaitDuration:1674880100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:170, WaitDuration:1698403700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:01.281941 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:02.992868 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:170, WaitDuration:1698403700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:171, WaitDuration:1698403700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:02.992868 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:02.999186 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:170, WaitDuration:1698403700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:02.999186 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:03.011543 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:03.011543 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:03.015925 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:03.015925 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:04.519659 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:172, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:04.519659 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:04.527022 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:171, WaitDuration:1701631600, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:04.527022 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:04.533542 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:04.533542 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:04.539142 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:04.539142 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:09.668057 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:173, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:09.668057 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:09.675062 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:172, WaitDuration:1707609900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:09.675062 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:09.682913 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:09.682913 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:09.687526 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:09.687526 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:11.306667 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:11.306667 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:11.312236 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:173, WaitDuration:1711957400, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:11.312236 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:11.315988 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:11.316780 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:11.324607 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:11.324607 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:32.014953 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:32.014953 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:32.030973 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:32.030973 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:38.187523 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:38.187523 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:38.192365 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:174, WaitDuration:1715064800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:38.192930 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:38.201594 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:38.201594 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:38.203779 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:38.203779 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:53.090183 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:53.090183 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:43:53.107973 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:53.108321 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:57.000549 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:176, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:57.000549 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:57.007223 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:175, WaitDuration:1718616000, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:57.007223 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:57.012964 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:57.012964 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:57.019017 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:57.019017 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:43:58.361717 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:177, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:58.361717 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:58.366234 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:176, WaitDuration:1723641300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:58.366234 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:43:58.375522 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:58.375522 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:43:58.381159 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:43:58.381159 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:44:07.376250 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:178, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:44:07.377153 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:44:07.385294 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:177, WaitDuration:1726537900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:44:07.385294 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:44:07.396374 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:44:07.396374 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:44:07.401323 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:44:07.401323 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:45:29.790665 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:179, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:29.790665 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:29.794901 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:178, WaitDuration:1732975300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:179, WaitDuration:1736948700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:29.794901 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:29.805814 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:179, WaitDuration:1736948700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:180, WaitDuration:1736948700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:29.805814 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:29.810086 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:179, WaitDuration:1736948700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:180, WaitDuration:1737736800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:29.810086 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:32.588250 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:180, WaitDuration:1737736800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:181, WaitDuration:1737736800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:32.588250 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:32.593372 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:180, WaitDuration:1737736800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:32.593372 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:32.599548 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:32.599548 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:32.604623 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:32.604623 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:37.095220 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:37.095220 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:45:37.104642 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:37.104642 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:45:49.762222 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:182, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:49.762222 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:49.767990 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:181, WaitDuration:1742366100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:49.767990 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:45:49.774239 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:49.774239 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:49.778962 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:49.778962 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:54.884785 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:54.884785 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:54.892847 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:182, WaitDuration:1747143700, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:54.893494 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:45:54.898728 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:54.898728 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:45:54.908216 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:45:54.908216 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:46:09.151559 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:185, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.152233 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:09.158738 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:183, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:186, WaitDuration:1757852300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.158738 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:09.167343 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:185, WaitDuration:1757852300, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:186, WaitDuration:1764356800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.167343 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:46:09.170726 18904 executor.go:90] [operation "GetUserPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:184, WaitDuration:1753395800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.170726 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetUserPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:46:09.176386 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.176386 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:46:09.179666 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:09.179666 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:46:11.117826 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:187, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:11.117826 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:46:11.122231 18904 executor.go:90] [operation "GetPunchCardById" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:186, WaitDuration:1781166900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:11.122231 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchCardById: succeeded. Connector: nakevlink-connector
I0914 15:46:11.130370 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:11.130370 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:46:11.135632 18904 executor.go:90] [operation "GetPunchesForCard" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:11.135632 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetPunchesForCard: succeeded. Connector: nakevlink-connector
I0914 15:46:15.476534 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:188, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:15.476534 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:15.484605 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:187, WaitDuration:1786886100, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:15.484605 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:15.493491 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:15.493491 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:46:15.497274 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:15.497274 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:46:27.891486 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:189, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:27.891486 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:27.899312 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:188, WaitDuration:1790918800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:27.899312 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:46:27.905368 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:27.905368 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:46:27.913685 18904 executor.go:90] [operation "GetBusinessPunchCards" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:46:27.913685 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessPunchCards: succeeded. Connector: nakevlink-connector
I0914 15:47:35.045143 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:190, WaitDuration:1795958900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}
I0914 15:47:35.045143 18904 engine.go:174] [/emulator/nakevlink-dataconnect f26a] ExecuteQuery GetBusinessByEmail: succeeded. Connector: nakevlink-connector
I0914 15:47:35.049291 18904 executor.go:90] [operation "GetBusinessByEmail" attempt 1] DBStats beforeRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:1, Idle:0, WaitCount:189, WaitDuration:1793789800, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}, afterRun: sql.DBStats{MaxOpenConnections:1, OpenConnections:1, InUse:0, Idle:1, WaitCount:190, WaitDuration:1795958900, MaxIdleClosed:0, MaxIdleTimeClosed:0, MaxLifetimeClosed:0}