debug.log 239 KB
Newer Older
Ketan's avatar
Ketan committed
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:04:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/progress","invalidateInfo":{"tags":["interception","CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["BACKEND_MAINMENU"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"},"is_exception":false} []
[2019-09-23 12:05:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"},"is_exception":false} []
[2019-09-23 12:05:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"},"is_exception":false} []
[2019-09-23 12:05:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"},"is_exception":false} []
[2019-09-23 12:05:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_21","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_21","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_21"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:44] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_21"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_36","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_36","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_36"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_36"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_1"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_1"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_3","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_3","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_3"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_3"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_9","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_9","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_9"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_9"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_10","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_10","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_10"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_10"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_11","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_11","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_11"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_11"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_17","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_17","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_17"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_17"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_18","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_18","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_18"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_18"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_19","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_19","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_19"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_19"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_20","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_20","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_20"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_20"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_27","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_27","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_27"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_27"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_28","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_28","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_28"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_28"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_29","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_29","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_29"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_29"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_30","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_30","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_30"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_30"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_31","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_31","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_31"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_31"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_33","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_33","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_33"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_33"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_34","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_34","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_34"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_34"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_32"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_35"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_1"},"is_exception":false} []
[2019-09-23 12:05:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_2"},"is_exception":false} []
[2019-09-23 12:05:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_3"},"is_exception":false} []
[2019-09-23 12:05:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_4"},"is_exception":false} []
[2019-09-23 12:05:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_1"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_1"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_3","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_3","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_3"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_3"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_4"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:05:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_product_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_product_1","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_1","catalog_category_product_1","catalog_category"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_1","catalog_category_product_1","catalog_category"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_product_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_product_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_2","catalog_category_product_2","catalog_category"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["catalog_category_2","catalog_category_product_2","catalog_category"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:27] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:29] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_1"},"is_exception":false} []
[2019-09-23 12:06:29] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_2"},"is_exception":false} []
[2019-09-23 12:06:29] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_3"},"is_exception":false} []
[2019-09-23 12:06:29] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_4"},"is_exception":false} []
[2019-09-23 12:06:30] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_1"},"is_exception":false} []
[2019-09-23 12:06:30] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_2"},"is_exception":false} []
[2019-09-23 12:06:30] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_3"},"is_exception":false} []
[2019-09-23 12:06:30] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_4"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_1"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_2"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_3"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_4"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_1"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_2"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_3"},"is_exception":false} []
[2019-09-23 12:06:31] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_4"},"is_exception":false} []
[2019-09-23 12:06:32] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_1"},"is_exception":false} []
[2019-09-23 12:06:32] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_2"},"is_exception":false} []
[2019-09-23 12:06:32] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_3"},"is_exception":false} []
[2019-09-23 12:06:32] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_address_4"},"is_exception":false} []
[2019-09-23 12:06:32] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_1"},"is_exception":false} []
[2019-09-23 12:06:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_2"},"is_exception":false} []
[2019-09-23 12:06:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_3"},"is_exception":false} []
[2019-09-23 12:06:37] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_4"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_1"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_2"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_3"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_4"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_1"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_2"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_3"},"is_exception":false} []
[2019-09-23 12:06:38] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_payment_4"},"is_exception":false} []
[2019-09-23 12:06:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_1"},"is_exception":false} []
[2019-09-23 12:06:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_2"},"is_exception":false} []
[2019-09-23 12:06:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_3"},"is_exception":false} []
[2019-09-23 12:06:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_4"},"is_exception":false} []
[2019-09-23 12:06:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["cms_page_2"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_74","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_74","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_74"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_74"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_73","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_73","FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_73"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:42] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV_ATTRIBUTE_73"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:06:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_catalogsearch_fulltext_scope1_1"},"is_exception":false} []
[2019-09-23 12:06:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_catalogsearch_fulltext_scope1_2"},"is_exception":false} []
[2019-09-23 12:06:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_catalogsearch_fulltext_scope1_3"},"is_exception":false} []
[2019-09-23 12:06:45] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_catalogsearch_fulltext_scope1_4"},"is_exception":false} []
[2019-09-23 12:06:46] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"request_declaration"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_1"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_2"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_3"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_4"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_1"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_2"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_3"},"is_exception":false} []
[2019-09-23 12:06:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_4"},"is_exception":false} []
[2019-09-23 12:06:49] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:49] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:49] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:49] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:50] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_item_1"},"is_exception":false} []
[2019-09-23 12:06:50] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_item_2"},"is_exception":false} []
[2019-09-23 12:06:50] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_item_3"},"is_exception":false} []
[2019-09-23 12:06:50] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_address_item_4"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_1"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_2"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_3"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_4"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:06:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:06:52] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:06:52] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:06:52] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:06:52] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:54] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:55] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:58] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:58] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:58] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:58] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:07:00] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_1"},"is_exception":false} []
[2019-09-23 12:07:00] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_2"},"is_exception":false} []
[2019-09-23 12:07:00] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_3"},"is_exception":false} []
[2019-09-23 12:07:00] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_quote_item_4"},"is_exception":false} []
[2019-09-23 12:07:01] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:01] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:01] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:01] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:02] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:02] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:02] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:02] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:03] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:04] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:04] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:04] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:04] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:06] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:06] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:06] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:06] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_1"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_2"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_3"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_order_item_4"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:07] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:08] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:08] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:08] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:08] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:09] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:10] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:11] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:11] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:11] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:11] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_1"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_2"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_3"},"is_exception":false} []
[2019-09-23 12:07:12] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_invoice_item_4"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:13] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:14] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:14] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:14] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:14] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:15] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_1"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_2"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_3"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_sales_creditmemo_item_4"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:18] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/start","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:19] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/setup/index.php/success","invalidateInfo":{"tags":["interception","CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:07:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/install/progress","invalidateInfo":{"tags":["interception","CONFIG"],"mode":"matchingTag"},"is_exception":false} []
[2019-09-23 12:57:51] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 12:57:52] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 12:57:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 12:57:57] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 12:58:16] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 12:58:17] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 12:58:19] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 12:59:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:00:02] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:00:19] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:00:20] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:00:44] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:00:45] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:01:09] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:01:10] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:01:34] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:01:35] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:01:59] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:02:00] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:02:24] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:02:25] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:02:49] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:02:50] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:03:14] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:03:15] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:03:39] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:03:40] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:04] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:05] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_24","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_5","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_7","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:27] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_6","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:29] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:29] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:29] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV","EAV_ATTRIBUTE"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:04:29] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:30] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_23","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_25","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_24","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_5","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_7","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV_ATTRIBUTE_6","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:04:54] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:04:55] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["config_scopes","CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["config_scopes","CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["config_scopes","CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:05:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:05:02] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:05:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:05:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:05:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:05:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:05:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:05:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:05:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:05:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:05:15] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_1"}} []
[2019-09-23 13:05:15] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_2"}} []
[2019-09-23 13:05:15] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_3"}} []
[2019-09-23 13:05:15] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_4"}} []
[2019-09-23 13:05:19] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:05:20] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/ResourceConnection/.
Class Magento\Framework\App\ResourceConnection\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:05:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_1"}} []
[2019-09-23 13:05:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_2"}} []
[2019-09-23 13:05:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_3"}} []
[2019-09-23 13:05:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_4"}} []
[2019-09-23 13:05:44] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:05:45] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:06:09] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:06:10] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:06:34] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:06:35] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:06:53] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:06:58] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:06:59] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:07:00] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:07:05] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Framework/App/Config/Initial/Reader/.
Class Magento\Framework\App\Config\Initial\Reader\Proxy generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:07:05] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:07:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:07:05] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:07:08] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:07:08] main.CRITICAL: Can't create directory /var/www/html/coconva2118/generated/code/Magento/Backend/Model/.
Class Magento\Backend\Model\UrlFactory generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:07:27] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:07:28] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:09:48] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/admin/index/index/key/1ccc557c509b130617f8fff6f0d926e912cb33acdf5cbd5b86b2b0e243c6d4d8/","invalidateInfo":{"tags":["BACKEND_MAINMENU"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:09:53] main.INFO: Item Magento_Backend::system_currency was removed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Theme::design_config was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Theme::system_design_theme was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_design_schedule was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_store was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::dashboard was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_tools was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_design was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_convert was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_cache was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::marketing was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::marketing_communications was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::marketing_seo was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::marketing_user_content was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::content was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::content_elements was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::stores was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::stores_settings was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::stores_attributes was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::other_settings was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::system_other_settings was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backend::setup_wizard was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Variable::system_variable was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_AdminNotification::system_adminnotification was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Config::system_config was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Indexer::system_index was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Customer::customer was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Customer::customer_manage was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Customer::customer_online was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Customer::customer_group was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Search::search_terms was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Search::search_synonyms was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_User::system_acl was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_User::system_acl_users was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_User::system_acl_roles was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_User::system_acl_locks was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Cms::cms_page was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Cms::cms_block was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Backup::system_tools_backup was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::catalog was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::catalog_products was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::catalog_categories was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_attributes was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_sets was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Catalog::inventory was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CatalogRule::promo was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CatalogRule::promo_catalog was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Integration::system_extensions was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Integration::system_integrations was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Widget::cms_widget_instance was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_operation was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_order was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_invoice was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_shipment was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_creditmemo was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::sales_transactions was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sales::system_order_statuses was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Email::template was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_rates was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_symbols was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Paypal::report_salesroot_paypal_settlement_reports was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Paypal::paypal_billing_agreement was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Analytics::business_intelligence was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Analytics::advanced_reporting was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Analytics::bi_essentials was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Downloadable::report_products_downloads was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_ImportExport::system_convert_import was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_ImportExport::system_convert_export was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_ImportExport::system_convert_history was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Newsletter::newsletter_template was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Newsletter::newsletter_queue was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Newsletter::newsletter_subscriber was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Newsletter::newsletter_problem was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_EncryptionKey::system_crypt_key was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magefan_Blog::elements was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magefan_Blog::post was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magefan_Blog::category was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magefan_Blog::import was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magefan_Blog::config_blog was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_InventoryAdminUi::inventory was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_InventoryAdminUi::source was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_InventoryAdminUi::stock was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Marketplace::partners was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_SalesRule::promo_quote was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Braintree::settlement_report was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_marketing was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_sales was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_tax was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_invoiced was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_shipping was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_refunded was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_salesroot_coupons was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_shopcart_product was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_shopcart_abandoned was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_products was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_products_bestsellers was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_products_sold was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_products_viewed was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_products_lowstock was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_customers was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_customers_accounts was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_customers_totals was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_customers_orders was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_statistics was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Reports::report_statistics_refresh was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Search::report_search_term was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_ratings was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_reviews_all was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_pending was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::report_review was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::report_review_customer was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Review::report_review_product was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_UrlRewrite::urlrewrite was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Sitemap::catalog_sitemap was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Tax::sales_tax was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Tax::sales_tax_rules was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_Tax::sales_tax_rates was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_TaxImportExport::system_convert_tax was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_CheckoutAgreements::sales_checkoutagreement was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging_bulk_operations was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::automation_studio was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::exclusion_rules was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation_report was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::dashboards was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::importer was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::automation was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::campaign was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::cron was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::logviewer was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Dotdigitalgroup_Email::abandoned was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_BackEnd::Magentech was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_CartQuickPro::CartQuickPro was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_FilterProducts::FilterProducts was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_ListingTabs::ListingTabs was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_MegaMenu::megamenu was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menugroup was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menuitems was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Sm_MegaMenu::configuration was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::shipping was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::carriers was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::locations was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::packaging was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::experiences was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::pickups was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::dispatches was processed [] []
[2019-09-23 13:09:53] main.INFO: Add of item with id Temando_Shipping::batches was processed [] []
[2019-09-23 13:10:15] main.DEBUG: Request validation failed for action "Magento\Backend\Controller\Adminhtml\Index\Index\Interceptor" [] []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"tags":[],"mode":"all"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"tags":[],"mode":"all"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"tags":["robots_1","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"tags":["robots_1","FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"tags":["config_scopes","CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:10:39] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:10:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:10:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:10:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:10:40] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:10:43] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:10:43] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:10:43] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:10:43] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/theme/design_config/save/key/04fe7fbe1f983ba3b4f5d9a9b94f8740ad5bfd0982ac9d88ed8656623823807b/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:10:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/manager/theme/design_config/index/key/a8febb4bb939879b87a313cec87a28cb92f7c9da192179eb28fb95d783c6e237/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:10:47] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:10:50] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/setup/index.php/session/prolong","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:10:58] main.INFO: Item Magento_Backend::system_currency was removed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Theme::design_config was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Theme::system_design_theme was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_design_schedule was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_store was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::dashboard was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_tools was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_design was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_convert was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_cache was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::marketing was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::marketing_communications was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::marketing_seo was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::marketing_user_content was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::content was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::content_elements was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::stores was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::stores_settings was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::stores_attributes was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::other_settings was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::system_other_settings was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backend::setup_wizard was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Variable::system_variable was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_AdminNotification::system_adminnotification was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Config::system_config was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Indexer::system_index was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Customer::customer was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Customer::customer_manage was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Customer::customer_online was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Customer::customer_group was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Search::search_terms was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Search::search_synonyms was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_User::system_acl was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_User::system_acl_users was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_User::system_acl_roles was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_User::system_acl_locks was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Cms::cms_page was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Cms::cms_block was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Backup::system_tools_backup was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::catalog was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::catalog_products was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::catalog_categories was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_attributes was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_sets was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Catalog::inventory was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CatalogRule::promo was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CatalogRule::promo_catalog was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Integration::system_extensions was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Integration::system_integrations was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Widget::cms_widget_instance was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_operation was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_order was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_invoice was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_shipment was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_creditmemo was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::sales_transactions was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sales::system_order_statuses was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Email::template was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_rates was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_symbols was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Paypal::report_salesroot_paypal_settlement_reports was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Paypal::paypal_billing_agreement was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Analytics::business_intelligence was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Analytics::advanced_reporting was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Analytics::bi_essentials was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Downloadable::report_products_downloads was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_ImportExport::system_convert_import was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_ImportExport::system_convert_export was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_ImportExport::system_convert_history was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Newsletter::newsletter_template was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Newsletter::newsletter_queue was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Newsletter::newsletter_subscriber was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Newsletter::newsletter_problem was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_EncryptionKey::system_crypt_key was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magefan_Blog::elements was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magefan_Blog::post was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magefan_Blog::category was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magefan_Blog::import was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magefan_Blog::config_blog was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_InventoryAdminUi::inventory was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_InventoryAdminUi::source was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_InventoryAdminUi::stock was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Marketplace::partners was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_SalesRule::promo_quote was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Braintree::settlement_report was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_marketing was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_sales was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_tax was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_invoiced was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_shipping was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_refunded was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_salesroot_coupons was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_shopcart_product was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_shopcart_abandoned was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_products was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_products_bestsellers was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_products_sold was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_products_viewed was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_products_lowstock was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_customers was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_customers_accounts was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_customers_totals was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_customers_orders was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_statistics was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Reports::report_statistics_refresh was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Search::report_search_term was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_ratings was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_reviews_all was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_pending was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::report_review was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::report_review_customer was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Review::report_review_product was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_UrlRewrite::urlrewrite was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Sitemap::catalog_sitemap was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Tax::sales_tax was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Tax::sales_tax_rules was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_Tax::sales_tax_rates was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_TaxImportExport::system_convert_tax was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_CheckoutAgreements::sales_checkoutagreement was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging_bulk_operations was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::automation_studio was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::exclusion_rules was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation_report was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::dashboards was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::importer was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::automation was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::campaign was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::cron was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::logviewer was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Dotdigitalgroup_Email::abandoned was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_BackEnd::Magentech was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_CartQuickPro::CartQuickPro was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_FilterProducts::FilterProducts was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_ListingTabs::ListingTabs was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_MegaMenu::megamenu was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menugroup was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menuitems was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Sm_MegaMenu::configuration was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::shipping was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::carriers was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::locations was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::packaging was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::experiences was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::pickups was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::dispatches was processed [] []
[2019-09-23 13:10:58] main.INFO: Add of item with id Temando_Shipping::batches was processed [] []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:21:01] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:21:07] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:21:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:21:13] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:21:18] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:21:23] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:21:29] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_1.colorswatches' [] []
[2019-09-23 13:21:29] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_2.colorswatches' [] []
[2019-09-23 13:21:30] main.ERROR: The specified path is not allowed. [] []
[2019-09-23 13:21:30] main.ERROR: The specified path is not allowed. [] []
[2019-09-23 13:21:30] main.ERROR: The specified path is not allowed. [] []
[2019-09-23 13:21:30] main.ERROR: The specified path is not allowed. [] []
[2019-09-23 13:21:30] main.ERROR: The specified path is not allowed. [] []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:21:59] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:22:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:22:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:22:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:22:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:22:03] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:22:19] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:22:19] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:22:19] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:22:19] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:22:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_1"}} []
[2019-09-23 13:22:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_2"}} []
[2019-09-23 13:22:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_3"}} []
[2019-09-23 13:22:22] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_design_config_grid_flat_4"}} []
[2019-09-23 13:22:23] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_1"}} []
[2019-09-23 13:22:23] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_2"}} []
[2019-09-23 13:22:23] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_3"}} []
[2019-09-23 13:22:23] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_4"}} []
[2019-09-23 13:22:26] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_1"}} []
[2019-09-23 13:22:26] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_2"}} []
[2019-09-23 13:22:26] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_3"}} []
[2019-09-23 13:22:26] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"DB_PDO_MYSQL_DDL_customer_grid_flat_4"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:23:46] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:23:52] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:24:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:24:00] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:24:06] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:24:09] main.CRITICAL: The specified "/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208" file couldn't be written. Warning!file_put_contents(/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208): failed to open stream: Permission denied
Class Magento\Framework\App\Http\Interceptor generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. [] []
[2019-09-23 13:24:12] main.CRITICAL: The specified "/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208" file couldn't be written. Warning!file_put_contents(/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208): failed to open stream: Permission denied
Class Magento\Framework\App\Http\Interceptor generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. {"exception":"[object] (RuntimeException(code: 0): The specified \"/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208\" file couldn't be written. Warning!file_put_contents(/var/www/html/coconva2118/generated/code/Magento/Framework/App/Http/Interceptor.php.4208): failed to open stream: Permission denied
Class Magento\\Framework\\App\\Http\\Interceptor generation error: The requested class did not generate properly, because the 'generated' directory permission is read-only. If --- after running the 'bin/magento setup:di:compile' CLI command when the 'generated' directory permission is set to write --- the requested class did not generate properly, then you must add the generated class object to the signature of the related construct method, only. at /var/www/html/coconva2118/vendor/magento/framework/Code/Generator.php:135)"} []
[2019-09-23 13:24:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:24:33] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_1.colorswatches' [] []
[2019-09-23 13:24:33] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_2.colorswatches' [] []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:27:09] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:27:15] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:27:21] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:27:21] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:27:31] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:27:37] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:27:40] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_1.colorswatches' [] []
[2019-09-23 13:27:40] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_2.colorswatches' [] []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["LAYOUT_GENERAL_CACHE_TAG"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["BLOCK_HTML"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["COLLECTION_DATA"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["REFLECTION"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["DB_DDL"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["EAV"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["CUSTOMER_NOTIFICATION"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["INTEGRATION_API_CONFIG"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["WEBSERVICE"],"mode":"matchingTag"}} []
[2019-09-23 13:30:30] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["TRANSLATE"],"mode":"matchingTag"}} []
[2019-09-23 13:30:35] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:30:41] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:30:41] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http:/","invalidateInfo":{"tags":["FPC"],"mode":"matchingTag"}} []
[2019-09-23 13:30:51] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"interception"}} []
[2019-09-23 13:30:57] main.DEBUG: cache_invalidate:  {"method":"GET","url":"http://localhost/coconva2118/","invalidateInfo":{"identifier":"SYSTEM_CONFIG"}} []
[2019-09-23 13:31:00] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_1.colorswatches' [] []
[2019-09-23 13:31:00] main.CRITICAL: Invalid template file: 'Sm_FilterProducts::product/listing/renderer.phtml' in module: 'Sm_FilterProducts' block's name: 'filterproducts_2.colorswatches' [] []
[2019-09-23 13:34:56] main.DEBUG: cache_invalidate:  {"method":"POST","url":"http://localhost/coconva2118/manager/admin/index/index/key/ec145ae2b28a75daa3d90f6ffe702207b18ca6e0526dfd106189a47b64fa1e0a/","invalidateInfo":{"tags":["BACKEND_MAINMENU"],"mode":"matchingAnyTag"}} []
[2019-09-23 13:35:02] main.INFO: Item Magento_Backend::system_currency was removed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Theme::design_config was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Theme::system_design_theme was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_design_schedule was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_store was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::dashboard was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_tools was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_design was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_convert was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_cache was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::marketing was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::marketing_communications was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::marketing_seo was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::marketing_user_content was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::content was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::content_elements was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::stores was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::stores_settings was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::stores_attributes was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::other_settings was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::system_other_settings was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backend::setup_wizard was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Variable::system_variable was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_AdminNotification::system_adminnotification was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Config::system_config was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Indexer::system_index was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Customer::customer was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Customer::customer_manage was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Customer::customer_online was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Customer::customer_group was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Search::search_terms was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Search::search_synonyms was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_User::system_acl was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_User::system_acl_users was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_User::system_acl_roles was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_User::system_acl_locks was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Cms::cms_page was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Cms::cms_block was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Backup::system_tools_backup was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::catalog was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::catalog_products was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::catalog_categories was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_attributes was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::catalog_attributes_sets was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Catalog::inventory was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CatalogRule::promo was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CatalogRule::promo_catalog was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Integration::system_extensions was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Integration::system_integrations was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Widget::cms_widget_instance was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_operation was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_order was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_invoice was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_shipment was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_creditmemo was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::sales_transactions was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sales::system_order_statuses was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Email::template was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_rates was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CurrencySymbol::system_currency_symbols was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Paypal::report_salesroot_paypal_settlement_reports was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Paypal::paypal_billing_agreement was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Analytics::business_intelligence was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Analytics::advanced_reporting was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Analytics::bi_essentials was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Downloadable::report_products_downloads was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_ImportExport::system_convert_import was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_ImportExport::system_convert_export was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_ImportExport::system_convert_history was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Newsletter::newsletter_template was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Newsletter::newsletter_queue was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Newsletter::newsletter_subscriber was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Newsletter::newsletter_problem was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_EncryptionKey::system_crypt_key was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magefan_Blog::elements was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magefan_Blog::post was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magefan_Blog::category was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magefan_Blog::import was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magefan_Blog::config_blog was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_InventoryAdminUi::inventory was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_InventoryAdminUi::source was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_InventoryAdminUi::stock was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Marketplace::partners was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_SalesRule::promo_quote was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Braintree::settlement_report was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_marketing was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_sales was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_tax was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_invoiced was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_shipping was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_refunded was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_salesroot_coupons was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_shopcart_product was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_shopcart_abandoned was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_products was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_products_bestsellers was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_products_sold was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_products_viewed was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_products_lowstock was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_customers was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_customers_accounts was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_customers_totals was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_customers_orders was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_statistics was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Reports::report_statistics_refresh was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Search::report_search_term was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_ratings was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_reviews_all was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::catalog_reviews_ratings_pending was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::report_review was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::report_review_customer was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Review::report_review_product was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_UrlRewrite::urlrewrite was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Sitemap::catalog_sitemap was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Tax::sales_tax was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Tax::sales_tax_rules was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_Tax::sales_tax_rates was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_TaxImportExport::system_convert_tax was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_CheckoutAgreements::sales_checkoutagreement was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Magento_AsynchronousOperations::system_magento_logging_bulk_operations was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::automation_studio was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::exclusion_rules was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::marketing_automation_report was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::dashboards was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::importer was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::automation was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::campaign was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::cron was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::logviewer was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Dotdigitalgroup_Email::abandoned was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_BackEnd::Magentech was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_CartQuickPro::CartQuickPro was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_FilterProducts::FilterProducts was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_ListingTabs::ListingTabs was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_MegaMenu::megamenu was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menugroup was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_MegaMenu::megamenu_menuitems was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Sm_MegaMenu::configuration was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::shipping was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::carriers was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::locations was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::packaging was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::experiences was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::pickups was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::dispatches was processed [] []
[2019-09-23 13:35:02] main.INFO: Add of item with id Temando_Shipping::batches was processed [] []
[2019-09-23 13:35:36] main.CRITICAL: The element "gallery" can't have a child because "gallery" already has a child with alias "content". {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): The element \"gallery\" can't have a child because \"gallery\" already has a child with alias \"content\". at /var/www/html/coconva2118/vendor/magento/framework/Data/Structure.php:625)"} []
[2019-09-23 13:35:47] main.CRITICAL: The element "gallery" can't have a child because "gallery" already has a child with alias "content". {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): The element \"gallery\" can't have a child because \"gallery\" already has a child with alias \"content\". at /var/www/html/coconva2118/vendor/magento/framework/Data/Structure.php:625)"} []
[2019-09-23 13:35:51] main.CRITICAL: The element "gallery" can't have a child because "gallery" already has a child with alias "content". {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): The element \"gallery\" can't have a child because \"gallery\" already has a child with alias \"content\". at /var/www/html/coconva2118/vendor/magento/framework/Data/Structure.php:625)"} []
[2019-09-23 13:36:20] main.CRITICAL: The element "gallery" can't have a child because "gallery" already has a child with alias "content". {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): The element \"gallery\" can't have a child because \"gallery\" already has a child with alias \"content\". at /var/www/html/coconva2118/vendor/magento/framework/Data/Structure.php:625)"} []
[2019-09-23 13:36:36] main.CRITICAL: The element "gallery" can't have a child because "gallery" already has a child with alias "content". {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): The element \"gallery\" can't have a child because \"gallery\" already has a child with alias \"content\". at /var/www/html/coconva2118/vendor/magento/framework/Data/Structure.php:625)"} []