d2_log.cc 630 B

123456789101112131415161718192021
  1. // Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC")
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this
  5. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. /// Defines the logger used by the top-level component of kea-dhcp-ddns.
  7. #include <d2/d2_log.h>
  8. namespace isc {
  9. namespace d2 {
  10. /// @brief Defines the logger used within D2.
  11. isc::log::Logger dctl_logger("dhcpddns");
  12. isc::log::Logger dhcp_to_d2_logger("dhcp-to-d2");
  13. isc::log::Logger d2_to_dns_logger("d2-to-dns");
  14. } // namespace d2
  15. } // namespace isc