Searched defs:log (Results 1 - 7 of 7) sorted by relevance
/httpd/support/ |
H A D | suexec.c | 88 static FILE *log = NULL; variable 168 if (!log) { 170 if ((log = fopen64(AP_LOG_EXEC, "a")) == NULL) { 172 if ((log = fopen(AP_LOG_EXEC, "a")) == NULL) { 174 fprintf(stderr, "suexec failure: could not open log file\n"); 181 fprintf(stderr, "suexec policy violation: see suexec log for more " 188 fprintf(log, "[%d-%.2d-%.2d %.2d:%.2d:%.2d]: ", 192 vfprintf(log, fmt, ap); 194 fflush(log); 487 * Log the transaction here to be sure we have an open log [all...] |
/httpd/modules/loggers/ |
H A D | mod_journald.c | 97 static void journald_log(apr_pool_t *pool, const char *log, argument 107 /* We were not able to create subpool, log at least what we have. */ 108 sd_journal_send("MESSAGE=%s", errstr, "LOG=%s", log, 124 IOVEC_ADD("LOG=%s", log); 160 /* We don't have any pool, so at least log the message without
|
H A D | mod_log_forensic.c | 19 * Relate the forensic log to the transfer log by including 20 * %{forensic-id}n in the custom log format, for example: 85 "couldn't spawn forensic log pipe %s", cfg->logname); 98 "could not open forensic log file %s.", fname); 142 char *log; member in struct:hlog 208 h.log = apr_palloc(r->pool, h.count); 209 h.pos = h.log; 210 h.end = h.log+h.count; 223 rv = apr_file_write_full(cfg->fd, h.log, [all...] |
/httpd/modules/test/ |
H A D | mod_policy.c | 50 policy_log, /* log the violation as a warning, but let it through */ 51 policy_enforce /* log the violation as an error, and decline */ 119 /* downgrade enforce to log? */ 125 /* downgrade enforce and log to ignore? */ 956 else if (!strcmp(action, "log")) { 964 "'%s' must be one of 'enforce, 'log' or 'ignore'.", action); 980 const char *environment, const char *log, const char *ignore) 985 conf->environment_log = log; 1221 "Action to take (enforce, ignore, log) if a conditional request was not honoured. Defaults to 'log' 979 set_environment(cmd_parms *cmd, void *dconf, const char *environment, const char *log, const char *ignore) argument [all...] |
/httpd/include/ |
H A D | http_core.h | 598 /** per-dir log config */ 599 struct ap_logconf *log; member in struct:__anon21 668 /* array of ap_errorlog_format_item for error log format string */ 672 * logged to the error log once per connection/request 825 * Error log formats 852 /** name of source file where the log message was produced, NULL if N/A. */ 857 /** module index of module that produced the log message, APLOG_NO_MODULE if N/A. */ 859 /** log level of error message (flags like APLOG_STARTUP have been removed), -1 if N/A */ 862 /** apr error status related to the log message, 0 if no error */ 867 /** 1 if APLOG_STARTUP was set for the log messag [all...] |
H A D | httpd.h | 124 /** The name of the log files */ 127 #define DEFAULT_ERRORLOG "logs/error.log" 995 /** Optional request log level configuration. Will usually point 998 const struct ap_logconf *log; member in struct:request_rec 1000 /** Id to identify request in access and error log. Set when the first 1001 * error log entry for this request is generated. 1160 /** Optional connection log level configuration. May point to a server or 1162 const struct ap_logconf *log; member in struct:conn_rec 1164 /** Id to identify this connection in error log. Set when the first 1165 * error log entr 1276 struct ap_logconf log; member in struct:server_rec [all...] |
/httpd/server/ |
H A D | core.c | 134 struct ap_logconf log; member in struct:__anon359 402 if (new->log) { 403 if (!conf->log) { 404 conf->log = new->log; 407 conf->log = ap_new_log_config(a, new->log); 408 ap_merge_log_config(base->log, conf->log); 1426 * the log i 3131 update_loglevel(cmd_parms *cmd, struct ap_logconf *log, const char *arg) argument 3182 struct ap_logconf *log; local 4942 const struct ap_logconf *log = NULL; local [all...] |
Completed in 215 milliseconds