* This routine is called to perform any module-specific log file * openings. It is invoked just before the post_config phase * * The return value is OK, DECLINED, or HTTP_mumble. If we return OK, the * server will still call any remaining modules with an handler for this * phase. */
| 795 | * phase. |
| 796 | */ |
| 797 | static int x_open_logs(apr_pool_t *pconf, apr_pool_t *plog, |
| 798 | apr_pool_t *ptemp, server_rec *s) |
| 799 | { |
| 800 | /* |
| 801 | * Log the call and exit. |
| 802 | */ |
| 803 | trace_startup(pconf, s, NULL, "x_open_logs()"); |
| 804 | return OK; |
| 805 | } |
| 806 | |
| 807 | /* |
| 808 | * This routine is called after the server finishes the configuration |
nothing calls this directly
no test coverage detected