From 3fcba68fcffb7fba55be54d1beab9184e96f2b3a Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Fri, 2 Aug 2019 09:58:41 +0100 Subject: Logging: Also log the level and category Signed-off-by: Daniel Silverstone --- utils/log.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'utils') diff --git a/utils/log.c b/utils/log.c index 412e12fb0..2168e646b 100644 --- a/utils/log.c +++ b/utils/log.c @@ -94,9 +94,9 @@ static const char *nslog_gettime(void) NSLOG_DEFINE_CATEGORY(netsurf, "NetSurf default logging"); NSLOG_DEFINE_CATEGORY(llcache, "Low level cache"); -NSLOG_DEFINE_CATEGORY(fetch, "objet fetching"); -NSLOG_DEFINE_CATEGORY(plot, "rendering system"); -NSLOG_DEFINE_CATEGORY(schedule, "scheduler"); +NSLOG_DEFINE_CATEGORY(fetch, "Object fetching"); +NSLOG_DEFINE_CATEGORY(plot, "Rendering system"); +NSLOG_DEFINE_CATEGORY(schedule, "Scheduler"); NSLOG_DEFINE_CATEGORY(fbtk, "Framebuffer toolkit"); NSLOG_DEFINE_CATEGORY(layout, "Layout"); NSLOG_DEFINE_CATEGORY(dukky, "Duktape JavaScript Binding"); @@ -108,8 +108,11 @@ netsurf_render_log(void *_ctx, va_list args) { fprintf(logfile, - "%s %.*s:%i %.*s: ", + "%s [%s %.*s] %.*s:%i %.*s: ", nslog_gettime(), + nslog_short_level_name(ctx->level), + ctx->category->namelen, + ctx->category->name, ctx->filenamelen, ctx->filename, ctx->lineno, -- cgit v1.2.3