From 911d12f7c4de2c67c16f969b176cca29dbbf7cd1 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 20 Apr 2017 22:22:29 +0900 Subject: [PATCH] nghttpx: Add log when loading configuration file --- src/shrpx.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shrpx.cc b/src/shrpx.cc index 8b6c6cde..6545f9d0 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -2718,6 +2718,7 @@ int process_options(Config *config, std::vector> &cmdcfgs) { std::array errbuf; if (conf_exists(config->conf_path.c_str())) { + LOG(NOTICE) << "Loading configuration from " << config->conf_path; std::set include_set; if (load_config(config, config->conf_path.c_str(), include_set) == -1) { LOG(FATAL) << "Failed to load configuration from " << config->conf_path;