summaryrefslogtreecommitdiff
path: root/src/utils/reload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/reload.cpp')
-rw-r--r--src/utils/reload.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/utils/reload.cpp b/src/utils/reload.cpp
deleted file mode 100644
index 6600c75..0000000
--- a/src/utils/reload.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <config/config.hpp>
-#include <logger/logger.hpp>
-
-void reload_process()
-{
- // Closing the config will just force it to be reopened the next time
- // a configuration option is needed
- Config::close();
- // Destroy the logger instance, to be recreated the next time a log
- // line needs to be written
- Logger::instance().reset();
- log_debug("Configuration and logger reloaded.");
-}