Parcourir la source

[trac558] minor editorial cleanups: removed redundant white spaces after EOL

JINMEI Tatuya il y a 14 ans
Parent
commit
3337b581fa

+ 5 - 5
configure.ac

@@ -366,7 +366,7 @@ AC_SUBST(USE_LCOV)
 # Configure log4cxx header and library path
 #
 # If explicitly specified, use it.
-# 
+#
 # AC_ARG_WITH([log4cxx],
 #   AC_HELP_STRING([--with-log4cxx=PATH],
 #     [specify directory where log4cxx is installed]),
@@ -374,10 +374,10 @@ AC_SUBST(USE_LCOV)
 #    log4cxx_include_path="${withval}/include";
 #    log4cxx_library_path="${withval}/lib"
 #   ])
-# 
+#
 # # If not specified, try some common paths.  These default to
 # # /usr/include and /usr/lib if not found
-# 
+#
 # if test -z "$with_log4cxx"; then
 # 	log4cxxdirs="/usr/local /usr/pkg /opt /opt/local"
 # 	for d in $log4cxxdirs
@@ -389,7 +389,7 @@ AC_SUBST(USE_LCOV)
 # 		fi
 # 	done
 # fi
-# 
+#
 # CPPFLAGS_SAVES="$CPPFLAGS"
 # if test "${log4cxx_include_path}" ; then
 # 	LOG4CXX_INCLUDES="-I${log4cxx_include_path}"
@@ -398,7 +398,7 @@ AC_SUBST(USE_LCOV)
 # AC_CHECK_HEADER([log4cxx/logger.h],, AC_MSG_ERROR([Missing log4cxx header files.]))
 # CPPFLAGS="$CPPFLAGS_SAVES"
 # AC_SUBST(LOG4CXX_INCLUDES)
-# 
+#
 # LOG4CXX_LDFLAGS="-llog4cxx";
 # if test "${log4cxx_library_path}"; then
 #     LOG4CXX_LDFLAGS="-L${log4cxx_library_path} -llog4cxx"

+ 1 - 1
src/lib/log/compiler/message.cc

@@ -210,7 +210,7 @@ splitNamespace(string ns) {
 
         // Unnamed namespace
         components.push_back("");
-        
+
     } else {
 
         // Namespaces components are separated by double colon characters -

+ 2 - 2
src/lib/log/logger_impl.cc

@@ -67,7 +67,7 @@ LoggerImpl::setSeverity(isc::log::Severity severity, int dbglevel) {
 
     int debug_level = max(MIN_DEBUG_LEVEL, min(MAX_DEBUG_LEVEL, dbglevel));
     if (isRootLogger()) {
-        
+
         // Can only set severity for the root logger, you can't disable it.
         // Any attempt to do so is silently ignored.
         if (severity != isc::log::DEFAULT) {
@@ -208,7 +208,7 @@ void
 LoggerImpl::output(const char* sev_text, const MessageID& ident,
     const char* text)
 {
-    
+
     // Get the time in a struct tm format, and convert to text
     time_t t_time;
     time(&t_time);

+ 1 - 1
src/lib/log/logger_impl.h

@@ -254,7 +254,7 @@ public:
 
 private:
     std::string          name_;                 ///< Name of this logger
-    
+
     // Split the status of the root logger from this logger.  If - is will
     // probably be the usual case - no per-logger setting is enabled, a
     // quick check of logger_info_.empty() will return true and we can quickly

+ 2 - 2
src/lib/log/logger_impl_log4cxx.cc

@@ -77,7 +77,7 @@ LoggerImpl::initLogger() {
             new log4cxx::ConsoleAppender(layout));
         log4cxx::LoggerPtr sys_root_logger = log4cxx::Logger::getRootLogger();
         sys_root_logger->addAppender(console);
-        
+
         // Set the default logging to INFO
         sys_root_logger->setLevel(log4cxx::Level::getInfo());
 
@@ -225,7 +225,7 @@ LoggerImpl::getDebugLevel() {
 
         // Null pointer returned, logging should be that of the parent.
         return (0);
-        
+
     } else {
         int severity = level->toInt();
         if (severity <= log4cxx::Level::DEBUG_INT) {

+ 1 - 1
src/lib/log/message_dictionary.h

@@ -161,7 +161,7 @@ public:
     virtual size_t size() const {
         return dictionary_.size();
     }
-    
+
 
     /// \brief Return begin() iterator of internal map
     const_iterator begin() const {

+ 0 - 1
src/lib/log/messagedef.cc

@@ -33,4 +33,3 @@ MessageInitializer messagedef_cc_Tue_Feb__8_18_01_54_2011(values);
 
 } // namespace log
 } // namespace isc
-