From 9524ca1566362b5b74f83920cba642969bf3c2ef Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Fri, 4 Aug 2023 09:16:29 -0700 Subject: [PATCH] more information in log --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index 4993ec0..a566b18 100644 --- a/src/main.zig +++ b/src/main.zig @@ -436,7 +436,7 @@ fn threadMain(allocator: std.mem.Allocator, server: *std.http.Server, thread_num } fn loadConfig(allocator: std.mem.Allocator) ![]Executor { - log.info("loading config", .{}); + log.info("loading config from 'proxy.ini'", .{}); // We will not watch this file - let it reload on SIGHUP var config_file = try std.fs.cwd().openFile("proxy.ini", .{}); defer config_file.close();