X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=log.c;h=aca1b9b8e415ea6a86fc89e20a68144cbcd4467c;hb=564022994befb8f71b89ae015751b22c34ae3ee8;hp=f3b5cbde7a3dd1f611aff40b4ea4a74ebaf1e6e7;hpb=78e25e52959ca45be76256d434a6b747734c198c;p=secnet.git diff --git a/log.c b/log.c index f3b5cbd..aca1b9b 100644 --- a/log.c +++ b/log.c @@ -162,6 +162,18 @@ void cfgfatal_maybefile(FILE *maybe_f, struct cloc loc, cstring_t facility, va_end(args); } +void cfgfatal_cl_type(struct cloc loc, const char *facility, + closure_t *cl, uint32_t exp_type, const char *name) +{ + char expbuf[10], gotbuf[10]; + assert(cl->type != exp_type); + const char *exp = closure_type_name(exp_type, expbuf); + const char *got = closure_type_name(cl->type, gotbuf); + cfgfatal(loc,facility, + "\"%s\" is the wrong type of closure (expected %s, got %s)\n", + name, exp, got); +} + void cfgfatal(struct cloc loc, cstring_t facility, const char *message, ...) { va_list args; @@ -455,7 +467,7 @@ static list_t *logfile_apply(closure_t *self, struct cloc loc, dict_t *context, st->level=string_list_to_word(dict_lookup(dict,"class"), message_class_table,"logfile"); - add_hook(PHASE_GETRESOURCES,logfile_phase_hook,st); + add_hook(PHASE_DAEMONIZE,logfile_phase_hook,st); add_hook(PHASE_CHILDPERSIST,logfile_childpersist_hook,st); return new_closure(&st->cl); @@ -567,7 +579,7 @@ static list_t *syslog_apply(closure_t *self, struct cloc loc, dict_t *context, st->facility=string_to_word(facstr,loc, syslog_facility_table,"syslog"); st->open=False; - add_hook(PHASE_GETRESOURCES,syslog_phase_hook,st); + add_hook(PHASE_DAEMONIZE,syslog_phase_hook,st); add_hook(PHASE_CHILDPERSIST,syslog_phase_hook,st); return new_closure(&st->cl); @@ -659,9 +671,14 @@ void log_from_fd(int fd, cstring_t prefix, struct log_if *log) } static struct logfile startup_log; +void log_early_setlevel(void) +{ + startup_log.level=message_level; +} void log_early_init(void) { logfile_file_init(&startup_log,stderr,"startup"); + log_early_setlevel(); system_log=&startup_log.ops;; }