blob: 9408812356543c803dcfbb42b4625aed0b1b916c [file] [log] [blame]
Davide Pesaventoa3148082018-04-12 18:21:54 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Davide Pesaventoa3148082018-04-12 18:21:54 -04004 * 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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::log {
Davide Pesaventoa3148082018-04-12 18:21:54 -040032
33static ndn::util::LogLevel
34parseLogLevel(const ConfigSection& item, const std::string& key)
35{
36 try {
37 return ndn::util::parseLogLevel(item.get_value<std::string>());
38 }
Davide Pesavento19779d82019-02-14 13:40:04 -050039 catch (const std::invalid_argument&) {
40 NDN_THROW_NESTED(ConfigFile::Error("Invalid log level for '" + key + "' in section 'log'"));
Davide Pesaventoa3148082018-04-12 18:21:54 -040041 }
42}
43
44static void
45onConfig(const ConfigSection& section, bool isDryRun, const std::string&)
46{
47 // log
48 // {
49 // ; default_level specifies the logging level for modules
50 // ; that are not explicitly named. All debugging levels
51 // ; listed above the selected value are enabled.
52 //
53 // default_level INFO
54 //
55 // ; You may also override the default for specific modules:
56 //
57 // FibManager DEBUG
58 // Forwarder WARN
59 // }
60
61 auto defaultLevel = ndn::util::LogLevel::INFO;
62 auto item = section.get_child_optional("default_level");
63 if (item) {
64 defaultLevel = parseLogLevel(*item, "default_level");
65 }
66 if (!isDryRun) {
67 // default_level applies only to NFD loggers
68 ndn::util::Logging::setLevel("nfd.*", defaultLevel);
69 }
70
71 for (const auto& i : section) {
72 if (i.first == "default_level") {
73 // do nothing
74 }
75 else {
76 auto level = parseLogLevel(i.second, i.first);
77 if (!isDryRun) {
78 if (i.first.find('.') == std::string::npos)
79 // backward compat: assume unqualified logger names refer to NFD loggers
80 ndn::util::Logging::setLevel("nfd." + i.first, level);
81 else
82 ndn::util::Logging::setLevel(i.first, level);
83 }
84 }
85 }
86}
87
88void
89setConfigFile(ConfigFile& config)
90{
91 config.addSectionHandler("log", &onConfig);
92}
93
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040094} // namespace nfd::log