Lines Matching defs:log

134     struct ap_logconf log;
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 is displayed on the terminal as no log file is opened yet.
3131 static const char *update_loglevel(cmd_parms *cmd, struct ap_logconf *log,
3141 err = ap_parse_log_level(arg, &log->level);
3144 ap_reset_module_loglevels(log, APLOG_NO_MODULE);
3154 "followed by a log level keyword", arg);
3172 ap_set_module_loglevel(cmd->pool, log, module->module_index, level);
3182 struct ap_logconf *log;
3186 if (!dconf->log) {
3187 dconf->log = ap_new_log_config(cmd->pool, NULL);
3189 log = dconf->log;
3192 log = &cmd->server->log;
3198 return update_loglevel(cmd, log, arg);
3229 if ((err = update_loglevel(cmd, &entry->log, argv[i])) != NULL)
3803 else if (strcmp(arg, "strict,log-only") == 0)
3810 "'strict', 'strict,log-only'";
3991 return apr_pstrcat(p, "Unrecognized error log format directive %",
4000 return "Ran off end of error log format parsing args to some directive";
4031 *err = "The '+' flag cannot be used in the main error log format";
4277 "The filename of the error log"),
4424 "'liberal', 'strict', 'strict,log-only'"),
4736 const char *desc = "main error log";
4738 desc = apr_psprintf(p, "error log of vhost defined at %s:%d",
4942 const struct ap_logconf *log = NULL;
4948 log = &conf->log;
4950 if (log) {
4951 merged = ap_new_log_config(c->pool, log);
4952 ap_merge_log_config(&s->log, merged);
4953 c->log = merged;