logger.hpp File Reference

Copyright (c) 2014-2017, The University of Memphis, Regents of the University of California. More...

#include <log4cxx/logger.h>
Include dependency graph for logger.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define INIT_LOGGER(name)   static log4cxx::LoggerPtr staticModuleLogger = log4cxx::Logger::getLogger(name)
 
#define NLSR_LOG_TRACE(x)   LOG4CXX_TRACE(staticModuleLogger, x)
 
#define NLSR_LOG_DEBUG(x)   LOG4CXX_DEBUG(staticModuleLogger, x)
 
#define NLSR_LOG_INFO(x)   LOG4CXX_INFO(staticModuleLogger, x)
 
#define NLSR_LOG_WARN(x)   LOG4CXX_WARN(staticModuleLogger, x)
 
#define NLSR_LOG_ERROR(x)   LOG4CXX_ERROR(staticModuleLogger, x)
 
#define NLSR_LOG_FATAL(x)   LOG4CXX_FATAL(staticModuleLogger, x);
 

Functions

void INIT_LOGGERS (const std::string &logDir, const std::string &logLevel)
 
void INIT_LOG4CXX (const std::string &log4cxxConfPath)
 Copyright (c) 2014-2017, The University of Memphis, Regents of the University of California. More...
 
bool isValidLogLevel (const std::string &logLevel)
 

Detailed Description

Copyright (c) 2014-2017, The University of Memphis, Regents of the University of California.

This file is part of NLSR (Named-data Link State Routing). See AUTHORS.md for complete list of NLSR authors and contributors.

NLSR is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with NLSR, e.g., in COPYING.md file. If not, see http://www.gnu.org/licenses/.

Define macros and auxiliary functions for logging.

This file defines the macros that NLSR uses for logging messages. An intrepid hacker could replace this system cleanly by providing a system that redefines all of the LOG* macros with an arbitrary system, as long as the underlying system accepts strings.

Definition in file logger.hpp.

Macro Definition Documentation

#define INIT_LOGGER (   name)    static log4cxx::LoggerPtr staticModuleLogger = log4cxx::Logger::getLogger(name)

Definition at line 35 of file logger.hpp.

#define NLSR_LOG_DEBUG (   x)    LOG4CXX_DEBUG(staticModuleLogger, x)

Definition at line 41 of file logger.hpp.

#define NLSR_LOG_ERROR (   x)    LOG4CXX_ERROR(staticModuleLogger, x)

Definition at line 50 of file logger.hpp.

#define NLSR_LOG_FATAL (   x)    LOG4CXX_FATAL(staticModuleLogger, x);

Definition at line 53 of file logger.hpp.

#define NLSR_LOG_INFO (   x)    LOG4CXX_INFO(staticModuleLogger, x)

Definition at line 44 of file logger.hpp.

#define NLSR_LOG_TRACE (   x)    LOG4CXX_TRACE(staticModuleLogger, x)

Definition at line 38 of file logger.hpp.

#define NLSR_LOG_WARN (   x)    LOG4CXX_WARN(staticModuleLogger, x)

Definition at line 47 of file logger.hpp.

Function Documentation

void INIT_LOG4CXX ( const std::string &  log4cxxConfPath)

Copyright (c) 2014-2017, The University of Memphis, Regents of the University of California.

This file is part of NLSR (Named-data Link State Routing). See AUTHORS.md for complete list of NLSR authors and contributors.

NLSR is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with NLSR, e.g., in COPYING.md file. If not, see http://www.gnu.org/licenses/.

Definition at line 36 of file logger.cpp.

Here is the caller graph for this function:

void INIT_LOGGERS ( const std::string &  logDir,
const std::string &  logLevel 
)

Definition at line 47 of file logger.cpp.

Here is the caller graph for this function:

bool isValidLogLevel ( const std::string &  logLevel)

Definition at line 80 of file logger.cpp.

Here is the caller graph for this function: