summaryrefslogtreecommitdiff
path: root/src/utils/reload.cpp
blob: 6600c7528753394733f56214e179122f5aa816fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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.");
}