when frankenphp_finish_request() is directly called from PHP export go_frankenphp_finish_php_request
(threadIndex C.uintptr_t)
| 343 | // |
| 344 | //export go_frankenphp_finish_php_request |
| 345 | func go_frankenphp_finish_php_request(threadIndex C.uintptr_t) { |
| 346 | thread := phpThreads[threadIndex] |
| 347 | fc := thread.frankenPHPContext() |
| 348 | |
| 349 | fc.closeContext() |
| 350 | |
| 351 | ctx := thread.context() |
| 352 | if fc.logger.Enabled(ctx, slog.LevelDebug) { |
| 353 | fc.logger.LogAttrs(ctx, slog.LevelDebug, "request handling finished", slog.Int("thread", thread.threadIndex), slog.String("url", fc.request.RequestURI)) |
| 354 | } |
| 355 | } |
nothing calls this directly
no test coverage detected