blob: 6f6f0ab1145befcac22ed41df9321844ff701b4c [file] [log] [blame]
Davide Pesaventoa3148082018-04-12 18:21:54 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "log-config-section.hpp"
27
28#include <ndn-cxx/util/logger.hpp>
29#include <ndn-cxx/util/logging.hpp>
30
31namespace nfd {
32namespace log {
33
34static ndn::util::LogLevel
35parseLogLevel(const ConfigSection& item, const std::string& key)
36{
37 try {
38 return ndn::util::parseLogLevel(item.get_value<std::string>());
39 }
40 catch (const std::invalid_argument& e) {
41 BOOST_THROW_EXCEPTION(ConfigFile::Error("Invalid setting for log." + key + ": " + e.what()));
42 }
43}
44
45static void
46onConfig(const ConfigSection& section, bool isDryRun, const std::string&)
47{
48 // log
49 // {
50 // ; default_level specifies the logging level for modules
51 // ; that are not explicitly named. All debugging levels
52 // ; listed above the selected value are enabled.
53 //
54 // default_level INFO
55 //
56 // ; You may also override the default for specific modules:
57 //
58 // FibManager DEBUG
59 // Forwarder WARN
60 // }
61
62 auto defaultLevel = ndn::util::LogLevel::INFO;
63 auto item = section.get_child_optional("default_level");
64 if (item) {
65 defaultLevel = parseLogLevel(*item, "default_level");
66 }
67 if (!isDryRun) {
68 // default_level applies only to NFD loggers
69 ndn::util::Logging::setLevel("nfd.*", defaultLevel);
70 }
71
72 for (const auto& i : section) {
73 if (i.first == "default_level") {
74 // do nothing
75 }
76 else {
77 auto level = parseLogLevel(i.second, i.first);
78 if (!isDryRun) {
79 if (i.first.find('.') == std::string::npos)
80 // backward compat: assume unqualified logger names refer to NFD loggers
81 ndn::util::Logging::setLevel("nfd." + i.first, level);
82 else
83 ndn::util::Logging::setLevel(i.first, level);
84 }
85 }
86 }
87}
88
89void
90setConfigFile(ConfigFile& config)
91{
92 config.addSectionHandler("log", &onConfig);
93}
94
95} // namespace log
96} // namespace nfd