diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-13 15:36:26 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-13 15:36:26 -0400 |
commit | f2e1c50081e66b7962c707de90378ac9209070bc (patch) | |
tree | 2f18af4cbfeba7e1bde9198f987f58817f0e816b /gnuradio-core/src/lib/runtime | |
parent | 890f2882d2210b1d4e64f0bbffc42ccc716cfd97 (diff) |
log: replacing log4cxx with log4cpp.
Diffstat (limited to 'gnuradio-core/src/lib/runtime')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block.cc | 4 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_logger.h | 28 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_logger.i | 8 |
3 files changed, 20 insertions, 20 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_block.cc b/gnuradio-core/src/lib/runtime/gr_block.cc index a5029d13cc..4950e8666c 100644 --- a/gnuradio-core/src/lib/runtime/gr_block.cc +++ b/gnuradio-core/src/lib/runtime/gr_block.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2004,2009,2010 Free Software Foundation, Inc. + * Copyright 2004,2009,2010,2013 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -91,7 +91,7 @@ gr_block::gr_block (const std::string &name, } } d_debug_logger = DLOG; -#endif /* HAVE_LOG4CXX */ +#endif /* HAVE_LOG4CPP */ #else /* ENABLE_GR_LOG */ d_logger = NULL; d_debug_logger = NULL; diff --git a/gnuradio-core/src/lib/runtime/gr_logger.h b/gnuradio-core/src/lib/runtime/gr_logger.h index d28907d045..2aadc3c936 100644 --- a/gnuradio-core/src/lib/runtime/gr_logger.h +++ b/gnuradio-core/src/lib/runtime/gr_logger.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2012 Free Software Foundation, Inc. + * Copyright 2012-2013 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -23,7 +23,7 @@ /******************************************************************************* * Author: Mark Plett * Description: -* The gr_logger module wraps the log4cxx library for logging in gnuradio +* The gr_logger module wraps the log4cpp library for logging in gnuradio *******************************************************************************/ #ifndef INCLUDED_GR_LOGGER_H @@ -32,7 +32,7 @@ /*! * \file gr_logger.h * \ingroup logging -* \brief GNURADIO logging wrapper for log4cxx library (C++ port of log4j) +* \brief GNURADIO logging wrapper for log4cpp library (C++ port of log4j) * */ @@ -101,7 +101,7 @@ typedef std::string gr_logger_ptr; #define GR_LOG_ASSERT(logger, cond, msg) std::cerr<<"ERROR:"<<msg<<std::endl; assert(cond) #else /* HAVE_LOG4CPP */ -// Second configuration...logging to log4cxx +// Second configuration...logging to log4cpp #include <log4cpp/Category.hh> #include <log4cpp/PropertyConfigurator.hh> @@ -114,7 +114,7 @@ typedef std::string gr_logger_ptr; * \brief GR_LOG macros * \ingroup logging * - * These macros wrap the standard LOG4CXX_LEVEL macros. The availablie macros + * These macros wrap the standard LOG4CPP_LEVEL macros. The availablie macros * are: * GR_LOG_DEBUG * GR_LOG_INFO @@ -362,7 +362,7 @@ GR_CORE_API void logger_get_level(gr_logger_ptr logger, std::string &level); /*! * \brief Get the logger's output level. * - * Gets the level of the logger. This returns the actual Log4cxx::Level + * Gets the level of the logger. This returns the actual Log4cpp::Level * data type, which can be: * * \li log4cpp::Priority::NOTSET @@ -465,10 +465,10 @@ class gr_logger /*! \brief inline function, wrapper for EMERG message */ void emerg(std::string name,std::string msg){GR_EMERG(name,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_ASSERT for conditional ERROR message */ + /*! \brief inline function, wrapper for LOG4CPP_ASSERT for conditional ERROR message */ void errorIF(std::string name,bool cond,std::string msg){GR_ERRORIF(name,cond,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_ASSERT for conditional ERROR message */ + /*! \brief inline function, wrapper for LOG4CPP_ASSERT for conditional ERROR message */ void gr_assert(std::string name,bool cond,std::string msg){GR_ASSERT(name,cond,msg);}; // Wrappers for Logger Pointer referenced functions @@ -478,19 +478,19 @@ class gr_logger /*! \brief inline function, wrapper to get the logger level */ void get_log_level(gr_logger_ptr logger,std::string &level){GR_LOG_GET_LEVEL(logger,level);} - /*! \brief inline function, wrapper for LOG4CXX_DEBUG for DEBUG message */ + /*! \brief inline function, wrapper for LOG4CPP_DEBUG for DEBUG message */ void log_debug(gr_logger_ptr logger,std::string msg){GR_LOG_DEBUG(logger,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_INFO for INFO message */ + /*! \brief inline function, wrapper for LOG4CPP_INFO for INFO message */ void log_info(gr_logger_ptr logger,std::string msg){GR_LOG_INFO(logger,msg);}; /*! \brief inline function, wrapper for NOTICE message */ void log_notice(gr_logger_ptr logger,std::string msg){GR_LOG_NOTICE(logger,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_WARN for WARN message */ + /*! \brief inline function, wrapper for LOG4CPP_WARN for WARN message */ void log_warn(gr_logger_ptr logger,std::string msg){GR_LOG_WARN(logger,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_ERROR for ERROR message */ + /*! \brief inline function, wrapper for LOG4CPP_ERROR for ERROR message */ void log_error(gr_logger_ptr logger,std::string msg){GR_LOG_ERROR(logger,msg);}; /*! \brief inline function, wrapper for NOTICE message */ @@ -505,10 +505,10 @@ class gr_logger /*! \brief inline function, wrapper for EMERG message */ void log_emerg(gr_logger_ptr logger,std::string msg){GR_LOG_EMERG(logger,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_ASSERT for conditional ERROR message */ + /*! \brief inline function, wrapper for LOG4CPP_ASSERT for conditional ERROR message */ void log_errorIF(gr_logger_ptr logger,bool cond,std::string msg){GR_LOG_ERRORIF(logger,cond,msg);}; - /*! \brief inline function, wrapper for LOG4CXX_ASSERT for conditional ERROR message */ + /*! \brief inline function, wrapper for LOG4CPP_ASSERT for conditional ERROR message */ void log_assert(gr_logger_ptr logger,bool cond,std::string msg){GR_LOG_ASSERT(logger,cond,msg);}; }; diff --git a/gnuradio-core/src/lib/runtime/gr_logger.i b/gnuradio-core/src/lib/runtime/gr_logger.i index e0fe120205..70e50e02b3 100644 --- a/gnuradio-core/src/lib/runtime/gr_logger.i +++ b/gnuradio-core/src/lib/runtime/gr_logger.i @@ -23,7 +23,7 @@ * Copyright 2011 Johns Hopkins University Applied Physics Lab * Author: Mark Plett * Description: -* SWIG interface generator file for gr_logger module. gr_logger wraps log4cxx logging +* SWIG interface generator file for gr_logger module. gr_logger wraps log4cpp logging * for gnuradio. *******************************************************************************/ @@ -48,14 +48,14 @@ #include <log4cpp/Category.hh> %} -namespace log4cxx{ +namespace log4cpp{ class LoggerPtr { public: ~LoggerPtr(); }; }; void logger_load_config(const std::string &config_filename); -void logger_set_level(log4cxx::LoggerPtr logger, const std::string &level); +void logger_set_level(log4cpp::LoggerPtr logger, const std::string &level); %rename(log) gr_logger; @@ -105,5 +105,5 @@ public: }; -#endif /* HAVE_LOG4CXX */ +#endif /* HAVE_LOG4CPP */ #endif /* ENABLE_GR_LOG */ |