BIND 10 trac558, updated. 3337b581fafb8c7a747badfabb84b2ad01007ae6 [trac558] minor editorial cleanups: removed redundant white spaces after EOL
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Feb 8 21:58:21 UTC 2011
The branch, trac558 has been updated
via 3337b581fafb8c7a747badfabb84b2ad01007ae6 (commit)
from f16f9856058ea2dca3b0be5a964fc3926ee6f395 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3337b581fafb8c7a747badfabb84b2ad01007ae6
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue Feb 8 13:58:03 2011 -0800
[trac558] minor editorial cleanups: removed redundant white spaces after EOL
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 10 +++++-----
src/lib/log/compiler/message.cc | 2 +-
src/lib/log/logger_impl.cc | 4 ++--
src/lib/log/logger_impl.h | 2 +-
src/lib/log/logger_impl_log4cxx.cc | 4 ++--
src/lib/log/message_dictionary.h | 2 +-
src/lib/log/messagedef.cc | 1 -
7 files changed, 12 insertions(+), 13 deletions(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 9d258af..9cef9f7 100644
--- a/configure.ac
+++ b/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"
diff --git a/src/lib/log/compiler/message.cc b/src/lib/log/compiler/message.cc
index c39ee00..04e75d9 100644
--- a/src/lib/log/compiler/message.cc
+++ b/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 -
diff --git a/src/lib/log/logger_impl.cc b/src/lib/log/logger_impl.cc
index dc04502..13992fc 100644
--- a/src/lib/log/logger_impl.cc
+++ b/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);
diff --git a/src/lib/log/logger_impl.h b/src/lib/log/logger_impl.h
index 0a0ba98..fd37747 100644
--- a/src/lib/log/logger_impl.h
+++ b/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
diff --git a/src/lib/log/logger_impl_log4cxx.cc b/src/lib/log/logger_impl_log4cxx.cc
index 51c3aad..a655d1d 100644
--- a/src/lib/log/logger_impl_log4cxx.cc
+++ b/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) {
diff --git a/src/lib/log/message_dictionary.h b/src/lib/log/message_dictionary.h
index 07ad369..943ac3d 100644
--- a/src/lib/log/message_dictionary.h
+++ b/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 {
diff --git a/src/lib/log/messagedef.cc b/src/lib/log/messagedef.cc
index b8cd4a6..a2ceeec 100644
--- a/src/lib/log/messagedef.cc
+++ b/src/lib/log/messagedef.cc
@@ -33,4 +33,3 @@ MessageInitializer messagedef_cc_Tue_Feb__8_18_01_54_2011(values);
} // namespace log
} // namespace isc
-
More information about the bind10-changes
mailing list