[svn] commit: r3357 - in /branches/vorner-recursor-dummylog: configure.ac doc/Doxyfile src/lib/Makefile.am src/lib/log/ src/lib/log/Makefile.am src/lib/log/dummylog.cc src/lib/log/dummylog.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Oct 26 11:13:34 UTC 2010
Author: vorner
Date: Tue Oct 26 11:13:33 2010
New Revision: 3357
Log:
Dummy log function to mark places to log
It will be replaced, but a function is better than comment, because:
* It prints the text to stderr at last for now
* Compiler can find the places for us when we remove the function, we
would have to grep for the comments.
Added:
branches/vorner-recursor-dummylog/src/lib/log/
branches/vorner-recursor-dummylog/src/lib/log/Makefile.am
branches/vorner-recursor-dummylog/src/lib/log/dummylog.cc
branches/vorner-recursor-dummylog/src/lib/log/dummylog.h
Modified:
branches/vorner-recursor-dummylog/configure.ac
branches/vorner-recursor-dummylog/doc/Doxyfile
branches/vorner-recursor-dummylog/src/lib/Makefile.am
Modified: branches/vorner-recursor-dummylog/configure.ac
==============================================================================
--- branches/vorner-recursor-dummylog/configure.ac (original)
+++ branches/vorner-recursor-dummylog/configure.ac Tue Oct 26 11:13:33 2010
@@ -463,6 +463,7 @@
src/lib/datasrc/Makefile
src/lib/datasrc/tests/Makefile
src/lib/xfr/Makefile
+ src/lib/log/Makefile
])
AC_OUTPUT([src/bin/cfgmgr/b10-cfgmgr.py
src/bin/cfgmgr/tests/b10-cfgmgr_test.py
Modified: branches/vorner-recursor-dummylog/doc/Doxyfile
==============================================================================
--- branches/vorner-recursor-dummylog/doc/Doxyfile (original)
+++ branches/vorner-recursor-dummylog/doc/Doxyfile Tue Oct 26 11:13:33 2010
@@ -568,7 +568,7 @@
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = ../src/lib/cc ../src/lib/config ../src/lib/dns ../src/lib/exceptions ../src/lib/datasrc ../src/bin/auth ../src/lib/bench
+INPUT = ../src/lib/cc ../src/lib/config ../src/lib/dns ../src/lib/exceptions ../src/lib/datasrc ../src/bin/auth ../src/lib/bench ../src/lib/log
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Modified: branches/vorner-recursor-dummylog/src/lib/Makefile.am
==============================================================================
--- branches/vorner-recursor-dummylog/src/lib/Makefile.am (original)
+++ branches/vorner-recursor-dummylog/src/lib/Makefile.am Tue Oct 26 11:13:33 2010
@@ -1,1 +1,1 @@
-SUBDIRS = exceptions dns asiolink cc config datasrc python xfr bench
+SUBDIRS = exceptions dns asiolink cc config datasrc python xfr bench log
More information about the bind10-changes
mailing list