17:50:03.360 | info | http.request | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "sn",
"userId": "330582",
"userSlug": "moustapha-kemal-ndiaye"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "Zw27y7VGeWFAOse1LpCi",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=WyRY0q8mw1dX6gvRt272LHsrZpQwb3QNXOW1sewA; PHPSESSID=653e5aceb4a091f439a3032c445e379c; goafrica-ad-id=6890d5f30d4fc4.18575313",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.18",
"x-real-ip": "216.73.216.18",
"x-scheme": "https"
}
}
},
"user_agent": {
"original": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
},
"url": {
"full": "https://www.goa.goafrica.syazen.cloud/sn/user/330582-moustapha-kemal-ndiaye",
"original": "https://www.goa.goafrica.syazen.cloud/sn/user/330582-moustapha-kemal-ndiaye",
"path": "/sn/user/330582-moustapha-kemal-ndiaye",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 268636160,
"memoryUsageHuman": "256.2 MiB"
}
} |
---|
17:50:03.375 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `cms_post` where `cms_post`.`slug` = ? limit ?",
"parameters": [
"questions-go-africa",
1
],
"durationInMs": 0.488573000067845
}
} |
---|
17:50:03.375 | debug | kysely.query | {
"kysely": {
"sql": "select count(*) as `count` from `cms_post` where `online` = ? and JSON_CONTAINS(`countries`, JSON_ARRAY(?)) = ?",
"parameters": [
1,
"SN",
true
],
"durationInMs": 0.6972199999727309
}
} |
---|
17:50:03.376 | debug | kysely.query | {
"kysely": {
"sql": "select * from `cms_post` as `o` where `o`.`id` in (?)",
"parameters": [
36
],
"durationInMs": 0.3707550000399351
}
} |
---|
17:50:03.379 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?)",
"parameters": [
330582
],
"durationInMs": 4.048928000032902
}
} |
---|
17:50:03.386 | debug | kysely.query | {
"kysely": {
"sql": "select `id` from `portfolio_media` where `user_id` = ? order by `rank` asc",
"parameters": [
330582
],
"durationInMs": 2.720861000008881
}
} |
---|
17:50:03.386 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, count(`id`) as `portfolio_medias_count` from `portfolio_media` where `user_id` = ? group by `user_id`",
"parameters": [
330582
],
"durationInMs": 3.126541000092402
}
} |
---|
17:50:03.387 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `user_author_id` = ? and (`feed_post`.`pending_publication_date` is null or `feed_post`.`pending_publication_date` < UTC_TIMESTAMP()) order by `created_date` desc limit ?",
"parameters": [
330582,
2
],
"durationInMs": 3.212690999964252
}
} |
---|
17:50:03.389 | debug | kysely.query | {
"kysely": {
"sql": "with `threads_with_me`(`thread_id`) as (select distinct `tu`.`inbox_thread_id` as `thread_id` from `inbox_thread_user` as `tu` inner join `inbox_thread` as `t` on `t`.`id` = `tu`.`inbox_thread_id` where `tu`.`user_id` = ? and `t`.`user_creator_id` != ?), `threads_with_response`(`thread_id`) as (select `t`.`thread_id` from `threads_with_me` as `t` where exists (select * from `inbox_message` as `m` where `m`.`user_author_id` = ? and `m`.`thread_id` = `t`.`thread_id`)) select count(*) as `total`, (select count(*) as `resp` from `threads_with_response`) as `resp` from `threads_with_me` as `t` limit ?",
"parameters": [
330582,
330582,
330582,
1
],
"durationInMs": 5.248003999935463
}
} |
---|
17:50:03.389 | debug | kysely.query | {
"kysely": {
"sql": "with `threads_with_me`(`thread_id`, `created_date`) as (select distinct `tu`.`inbox_thread_id` as `thread_id`, `t`.`created_date` from `inbox_thread_user` as `tu` inner join `inbox_thread` as `t` on `t`.`id` = `tu`.`inbox_thread_id` where `tu`.`user_id` = ? and `t`.`user_creator_id` != ?), `threads_delay`(`thread_id`, `delay`) as (select `t`.`thread_id`, (select TIMESTAMPDIFF(MINUTE, `t`.`created_date`, `m`.`created_date`) as `delay` from `inbox_message` as `m` where `m`.`user_author_id` = ? and `m`.`thread_id` = `t`.`thread_id` and `m`.`id` = (select min(`id`) as `id` from `inbox_message` where `inbox_message`.`thread_id` = `t`.`thread_id` and `inbox_message`.`user_author_id` = ?)) as `delay` from `threads_with_me` as `t`), `delays_filtered`(`thread_id`, `delay`) as (select * from `threads_delay` where `delay` is not null and `delay` < (select `delay` from `threads_delay` where `delay` is not null order by `delay` desc limit ?)) select avg(`t`.`delay`) as `mean` from `delays_filtered` as `t` limit ?",
"parameters": [
330582,
330582,
330582,
330582,
1,
1
],
"durationInMs": 5.391279000090435
}
} |
---|
17:50:03.389 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `status` from `user_job_status` where `user_id` in (?)",
"parameters": [
330582
],
"durationInMs": 4.801979999989271
}
} |
---|
17:50:03.389 | debug | kysely.query | {
"kysely": {
"sql": "select * from `following` where `author_id` = ? order by `date` desc",
"parameters": [
330582
],
"durationInMs": 5.900570999830961
}
} |
---|
17:50:03.390 | debug | kysely.query | {
"kysely": {
"sql": "select `user_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` is null and `user_author_id` in (?)) group by `user_author_id`",
"parameters": [
330582
],
"durationInMs": 6.094831000082195
}
} |
---|
17:50:03.390 | debug | kysely.query | {
"kysely": {
"sql": "select `target_user_id`, count(`id`) as `count` from `following` where (`target_company_id` is null and `target_user_id` in (?)) group by `target_user_id`",
"parameters": [
330582
],
"durationInMs": 6.2363019997719675
}
} |
---|
17:50:03.391 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `category_id` from `user_interested_category` where `user_id` in (?)",
"parameters": [
330582
],
"durationInMs": 6.311170999892056
}
} |
---|
17:50:03.391 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_resume` where `user_id` in (?)",
"parameters": [
330582
],
"durationInMs": 4.646371999988332
}
} |
---|
17:50:03.391 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_formation` where `user_id` in (?) order by `rank` asc",
"parameters": [
330582
],
"durationInMs": 4.650278999935836
}
} |
---|
17:50:03.392 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_experience` where `user_id` in (?) order by `rank` asc",
"parameters": [
330582
],
"durationInMs": 3.881347000133246
}
} |
---|
17:50:03.393 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_lang` where `user_id` in (?)",
"parameters": [
330582
],
"durationInMs": 4.033508999971673
}
} |
---|
17:50:03.393 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_skill` where `user_id` in (?)",
"parameters": [
330582
],
"durationInMs": 4.178918000077829
}
} |
---|
17:50:03.393 | debug | kysely.query | {
"kysely": {
"sql": "select `user_id`, `id` from `user_coordinate` where `user_id` in (?) and `type` != ?",
"parameters": [
330582,
""
],
"durationInMs": 4.169400000013411
}
} |
---|
17:50:03.394 | debug | kysely.query | {
"kysely": {
"sql": "with recursive `cte`(`id`, `parent_id`, `level`, `root_id`) as (select `c`.`id`, `c`.`parent_id`, ? as `level`, `c`.`id` as `root_id` from `category` as `c` where `c`.`id` in (?) union all select `p`.`id`, `p`.`parent_id`, cte.level + ? as `level`, `cte`.`root_id` from `category` as `p` inner join `cte` on `p`.`id` = `cte`.`parent_id`) select `id`, `root_id`, `level` from `cte`",
"parameters": [
1,
123,
1
],
"durationInMs": 3.9286849999334663
}
} |
---|
17:50:03.394 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
123,
"fr"
],
"durationInMs": 3.954191999975592
}
} |
---|
17:50:03.395 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
216108
],
"durationInMs": 4.085854999953881
}
} |
---|
17:50:03.397 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ?",
"parameters": [
933
],
"durationInMs": 6.58741099992767
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ? and `c`.`parent_id` is null",
"parameters": [
933
],
"durationInMs": 5.483690999913961
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`type`, count(`r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ? group by `r`.`type`",
"parameters": [
933
],
"durationInMs": 5.177984999958426
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ?",
"parameters": [
928
],
"durationInMs": 5.010956000071019
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ?",
"parameters": [
928
],
"durationInMs": 4.962948000058532
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `c`.`id`) as `count` from `feed_comment` as `c` where `c`.`feed_post_id` = ? and `c`.`parent_id` is null",
"parameters": [
928
],
"durationInMs": 4.5537610000465065
}
} |
---|
17:50:03.398 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`type`, count(`r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ? group by `r`.`type`",
"parameters": [
928
],
"durationInMs": 4.382603999925777
}
} |
---|
17:50:03.399 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `id` in (?, ?)",
"parameters": [
933,
928
],
"durationInMs": 4.314278000034392
}
} |
---|
17:50:03.401 | debug | kysely.query | {
"kysely": {
"sql": "select `feed_media`.`media_id`, `feed_media`.`feed_post_id` from `feed_media` where `feed_media`.`feed_post_id` in (?, ?)",
"parameters": [
933,
928
],
"durationInMs": 6.1784150002058595
}
} |
---|
17:50:03.401 | debug | kysely.query | {
"kysely": {
"sql": "select count(distinct `r`.`id`) as `count` from `reaction` as `r` where `r`.`target_feed_post_id` = ?",
"parameters": [
933
],
"durationInMs": 10.441267000045627
}
} |
---|
17:50:03.401 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `pl`.`link_meta_data_id` from `feed_post_link_meta_data` as `pl` where `pl`.`feed_post_id` in (?, ?)",
"parameters": [
933,
928
],
"durationInMs": 3.8342800000682473
}
} |
---|
17:50:03.402 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `l`.`related_feed_post_id` from `feed_post_link_meta_data` as `pl` inner join `link_meta_data` as `l` on `l`.`id` = `pl`.`link_meta_data_id` where `pl`.`feed_post_id` in (?, ?) and `l`.`related_feed_post_id` is not null group by `pl`.`feed_post_id`",
"parameters": [
933,
928
],
"durationInMs": 4.17083299998194
}
} |
---|
17:50:03.402 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_formation` where `id` in (?, ?, ?)",
"parameters": [
2359,
2358,
2357
],
"durationInMs": 4.3246870001312345
}
} |
---|
17:50:03.403 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_experience` where `id` in (?, ?, ?, ?, ?)",
"parameters": [
2468,
2467,
2466,
2465,
2464
],
"durationInMs": 4.787142999935895
}
} |
---|
17:50:03.404 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_lang` where `id` in (?, ?)",
"parameters": [
21380,
21381
],
"durationInMs": 5.768627000041306
}
} |
---|
17:50:03.405 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user_coordinate` where `id` in (?, ?, ?)",
"parameters": [
124803,
124804,
124811
],
"durationInMs": 6.053825000068173
}
} |
---|
17:50:03.405 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
122,
"fr"
],
"durationInMs": 5.310780000174418
}
} |
---|
17:50:03.405 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
113
],
"durationInMs": 4.365723000140861
}
} |
---|
17:50:03.409 | debug | kysely.query | {
"kysely": {
"sql": "select `r`.`target_feed_post_id`, `r`.`id` from `reaction` as `r` where `r`.`target_feed_post_id` in (?, ?) and (? is not null and `r`.`user_author_id` = ?) group by `r`.`target_feed_post_id`",
"parameters": [
933,
928,
null,
null
],
"durationInMs": 7.678368999855593
}
} |
---|
17:50:03.410 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?) group by `author_id`",
"parameters": [
330582
],
"durationInMs": 7.799672999884933
}
} |
---|
17:50:03.410 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?)",
"parameters": [
123
],
"durationInMs": 7.387209999840707
}
} |
---|
17:50:03.410 | debug | kysely.query | {
"kysely": {
"sql": "select * from `link_meta_data` where `id` in (?, ?)",
"parameters": [
417,
406
],
"durationInMs": 6.61623500008136
}
} |
---|
17:50:03.411 | debug | kysely.query | {
"kysely": {
"sql": "select * from `feed_post` where `id` in (?, ?)",
"parameters": [
355,
33
],
"durationInMs": 6.492324999999255
}
} |
---|
17:50:03.412 | debug | kysely.query | {
"kysely": {
"sql": "select `feed_media`.`media_id`, `feed_media`.`feed_post_id` from `feed_media` where `feed_media`.`feed_post_id` in (?, ?)",
"parameters": [
355,
33
],
"durationInMs": 7.145533999893814
}
} |
---|
17:50:03.412 | debug | kysely.query | {
"kysely": {
"sql": "select `pl`.`feed_post_id`, `pl`.`link_meta_data_id` from `feed_post_link_meta_data` as `pl` where `pl`.`feed_post_id` in (?, ?)",
"parameters": [
355,
33
],
"durationInMs": 7.041872000088915
}
} |
---|
17:50:03.413 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?, ?, ?)",
"parameters": [
29407,
384387,
479958
],
"durationInMs": 7.500981000019237
}
} |
---|
17:50:03.414 | debug | kysely.query | {
"kysely": {
"sql": "select `bi`.`target_feed_post_id`, `bi`.`id` from `bookmark_item` as `bi` inner join `bookmark` as `b` on `b`.`id` = `bi`.`bookmark_id` where `bi`.`target_feed_post_id` in (?, ?) and (? is not null and `b`.`user_id` = ?) group by `bi`.`target_feed_post_id`",
"parameters": [
933,
928,
null,
null
],
"durationInMs": 12.373249999945983
}
} |
---|
17:50:03.414 | debug | kysely.query | {
"kysely": {
"sql": "with `followCount`(`countu`, `countc`, `target_user_id`, `target_company_id`) as (select count(distinct `following`.`target_company_id`) as `countc`, count(distinct `following`.`target_user_id`) as `countu`, `following`.`target_user_id`, `following`.`target_company_id` from `following` where `following`.`target_user_id` is not null group by `following`.`target_user_id`, `following`.`target_company_id`) select *, countc\n + countu as `count` from `following` left join `followCount` on ((`following`.`target_user_id` is not null and `following`.`target_user_id` = `followCount`.`target_user_id`) or (`following`.`target_company_id` is not null and `following`.`target_company_id` = `followCount`.`target_company_id`)) where `author_id` = ? and (`following`.`target_company_id` is null or `following`.`target_company_id` not in (?, ?, ?, ?)) order by `count` desc limit ?",
"parameters": [
330582,
466439,
384737,
800350,
828146,
4
],
"durationInMs": 16.0652570000384
}
} |
---|
17:50:03.415 | debug | kysely.query | {
"kysely": {
"sql": "select `target_company_id`, count(`id`) as `count` from `following` where (`target_company_id` in (?, ?, ?) and `target_user_id` is null) group by `target_company_id`",
"parameters": [
29407,
384387,
479958
],
"durationInMs": 5.23393899993971
}
} |
---|
17:50:03.415 | debug | kysely.query | {
"kysely": {
"sql": "select `company_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` in (?, ?, ?) and `user_author_id` is null) group by `company_author_id`",
"parameters": [
29407,
384387,
479958
],
"durationInMs": 5.203912999946624
}
} |
---|
17:50:03.416 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
112
],
"durationInMs": 5.627866999944672
}
} |
---|
17:50:03.416 | debug | kysely.query | {
"kysely": {
"sql": "select `target_company_id`, count(`id`) as `count` from `following` where (`target_company_id` in (?, ?) and `target_user_id` is null) group by `target_company_id`",
"parameters": [
592360,
828606
],
"durationInMs": 4.206197999883443
}
} |
---|
17:50:03.417 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?, ?)",
"parameters": [
592360,
828606
],
"durationInMs": 4.769188999896869
}
} |
---|
17:50:03.417 | debug | kysely.query | {
"kysely": {
"sql": "select `company_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` in (?, ?) and `user_author_id` is null) group by `company_author_id`",
"parameters": [
592360,
828606
],
"durationInMs": 5.1998149999417365
}
} |
---|
17:50:03.418 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?)",
"parameters": [
278895,
275298
],
"durationInMs": 5.2759459998924285
}
} |
---|
17:50:03.419 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
59,
"fr",
143,
"fr"
],
"durationInMs": 5.532059999881312
}
} |
---|
17:50:03.421 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?)",
"parameters": [
59,
143
],
"durationInMs": 7.073288999963552
}
} |
---|
17:50:03.426 | debug | kysely.query | {
"kysely": {
"sql": "select * from `user` where `user`.`id` in (?, ?, ?, ?)",
"parameters": [
353655,
391892,
46800,
354791
],
"durationInMs": 11.010630999924615
}
} |
---|
17:50:03.428 | debug | kysely.query | {
"kysely": {
"sql": "select `author_id`, count(`id`) as `count` from `following` where `author_id` in (?, ?, ?, ?) group by `author_id`",
"parameters": [
353655,
391892,
46800,
354791
],
"durationInMs": 12.962339999852702
}
} |
---|
17:50:03.428 | debug | kysely.query | {
"kysely": {
"sql": "select `target_user_id`, count(`id`) as `count` from `following` where (`target_company_id` is null and `target_user_id` in (?, ?, ?, ?)) group by `target_user_id`",
"parameters": [
353655,
391892,
46800,
354791
],
"durationInMs": 12.52018200000748
}
} |
---|
17:50:03.429 | debug | kysely.query | {
"kysely": {
"sql": "select `user_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` is null and `user_author_id` in (?, ?, ?, ?)) group by `user_author_id`",
"parameters": [
353655,
391892,
46800,
354791
],
"durationInMs": 12.491007999982685
}
} |
---|
17:50:03.430 | debug | kysely.query | {
"kysely": {
"sql": "select * from `company` where `company`.`id` in (?, ?, ?, ?)",
"parameters": [
828146,
800350,
384737,
466439
],
"durationInMs": 12.577278000069782
}
} |
---|
17:50:03.430 | debug | kysely.query | {
"kysely": {
"sql": "select `target_company_id`, count(`id`) as `count` from `following` where (`target_company_id` in (?, ?, ?, ?) and `target_user_id` is null) group by `target_company_id`",
"parameters": [
828146,
800350,
384737,
466439
],
"durationInMs": 12.942011999897659
}
} |
---|
17:50:03.431 | debug | kysely.query | {
"kysely": {
"sql": "select `company_author_id`, count(`id`) as `count` from `feed_post` where (`company_author_id` in (?, ?, ?, ?) and `user_author_id` is null) group by `company_author_id`",
"parameters": [
828146,
800350,
384737,
466439
],
"durationInMs": 12.823623000178486
}
} |
---|
17:50:03.431 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
239,
"fr",
284,
"fr"
],
"durationInMs": 10.111567999934778
}
} |
---|
17:50:03.431 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?)",
"parameters": [
239,
284
],
"durationInMs": 10.00850800005719
}
} |
---|
17:50:03.431 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?)",
"parameters": [
2058
],
"durationInMs": 16.545064999954775
}
} |
---|
17:50:03.432 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?)",
"parameters": [
253766,
270133
],
"durationInMs": 3.4311450000386685
}
} |
---|
17:50:03.432 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
55,
132
],
"durationInMs": 3.4589259999338537
}
} |
---|
17:50:03.432 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
49,
"fr",
138,
"fr"
],
"durationInMs": 3.425895000109449
}
} |
---|
17:50:03.432 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?, ?)",
"parameters": [
231265,
282431,
242829
],
"durationInMs": 3.5542929999064654
}
} |
---|
17:50:03.433 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
67,
"fr",
389,
"fr"
],
"durationInMs": 2.273995000170544
}
} |
---|
17:50:03.433 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?)",
"parameters": [
67,
389
],
"durationInMs": 2.291777999838814
}
} |
---|
17:50:03.433 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
70,
"fr",
338,
"fr"
],
"durationInMs": 2.3992870000656694
}
} |
---|
17:50:03.433 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category` where `category`.`id` in (?, ?)",
"parameters": [
70,
338
],
"durationInMs": 2.3697019999381155
}
} |
---|
17:50:03.434 | debug | kysely.query | {
"kysely": {
"sql": "select * from `media__media` as `m` where `m`.`id` in (?, ?, ?, ?)",
"parameters": [
267342,
260666,
270509,
272067
],
"durationInMs": 2.659468000056222
}
} |
---|
17:50:03.436 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where ((`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?) or (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?))",
"parameters": [
220,
"fr",
283,
"fr"
],
"durationInMs": 3.874695000005886
}
} |
---|
17:50:03.436 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
46,
127
],
"durationInMs": 3.7323720001149923
}
} |
---|
17:50:03.436 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
61,
334
],
"durationInMs": 3.7524089999496937
}
} |
---|
17:50:03.437 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` as `v` where (`v`.`category_id` = ? and `v`.`country` is null and `v`.`lang` = ?)",
"parameters": [
18,
"fr"
],
"durationInMs": 3.662493000039831
}
} |
---|
17:50:03.437 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
64,
296
],
"durationInMs": 3.646544000133872
}
} |
---|
17:50:03.437 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
211,
249
],
"durationInMs": 5.53916300018318
}
} |
---|
17:50:03.437 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?, ?)",
"parameters": [
248,
196
],
"durationInMs": 1.4162090001627803
}
} |
---|
17:50:03.437 | debug | kysely.query | {
"kysely": {
"sql": "select * from `category_variant` where `category_variant`.`id` in (?)",
"parameters": [
16
],
"durationInMs": 0.6038160000462085
}
} |
---|
17:50:03.490 | info | http.response | {
"svelte": {
"route": {
"id": "/(frontend)/[[_country]]/user/[userId=integer]-[[userSlug]]"
},
"params": {
"_country": "sn",
"userId": "330582",
"userSlug": "moustapha-kemal-ndiaye"
},
"clientAddress": "216.73.216.18",
"isDataRequest": false,
"isSubRequest": false
},
"http": {
"request": {
"id": "Zw27y7VGeWFAOse1LpCi",
"method": "GET",
"bytes": null,
"mime_type": null,
"referrer": null,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=WyRY0q8mw1dX6gvRt272LHsrZpQwb3QNXOW1sewA; PHPSESSID=653e5aceb4a091f439a3032c445e379c; goafrica-ad-id=6890d5f30d4fc4.18575313",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.18",
"x-real-ip": "216.73.216.18",
"x-scheme": "https"
}
},
"response": {
"bytes": 282318,
"mime_type": "text/html",
"status_code": 200,
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, br, zstd, deflate",
"connection": "close",
"cookie": "GOAFRICA_NEXT_SESSION_ID=WyRY0q8mw1dX6gvRt272LHsrZpQwb3QNXOW1sewA; PHPSESSID=653e5aceb4a091f439a3032c445e379c; goafrica-ad-id=6890d5f30d4fc4.18575313",
"host": "www.goa.goafrica.syazen.cloud",
"user-agent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"x-forwarded-for": "216.73.216.18",
"x-real-ip": "216.73.216.18",
"x-scheme": "https"
}
}
},
"user_agent": {
"original": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
},
"url": {
"full": "https://www.goa.goafrica.syazen.cloud/sn/user/330582-moustapha-kemal-ndiaye",
"original": "https://www.goa.goafrica.syazen.cloud/sn/user/330582-moustapha-kemal-ndiaye",
"path": "/sn/user/330582-moustapha-kemal-ndiaye",
"domain": "www.goa.goafrica.syazen.cloud",
"port": null,
"username": null,
"query": null,
"scheme": "https"
},
"profiling": {
"memoryUsage": 273354752,
"memoryUsageHuman": "260.7 MiB",
"requestTimeInMs": 131
}
} |
---|