[Dbconfig-common-devel] dbconfig-common/internal common,1.3,1.4

seanius@haydn.debian.org seanius@haydn.debian.org


Update of /cvsroot/dbconfig-common/dbconfig-common/internal
In directory haydn:/org/alioth.debian.org/chroot/home/users/seanius/tmp/cvs-serv11497/internal

Modified Files:
	common 
Log Message:
a few more misc fixes/tweaks

Index: common
===================================================================
RCS file: /cvsroot/dbconfig-common/dbconfig-common/internal/common,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- common	26 Apr 2005 04:30:54 -0000	1.3
+++ common	27 Apr 2005 02:35:02 -0000	1.4
@@ -9,9 +9,10 @@
 ## dbc_logpart: log interal messages (without newline)
 ##
 dbc_logpart(){
-	if [ "$dbc_debug" ]; then
+	# for the time being, at least, let's default to verbose
+	#if [ "$dbc_debug" ]; then
 		echo -n "$@ " > /dev/stderr
-	fi
+	#fi
 	if [ "$dbc_log" ]; then
 		dbc_log="$dbc_log $@"
 	else
@@ -23,9 +24,10 @@
 ## dbc_logline: log interal messages
 ##
 dbc_logline(){
-	if [ "$dbc_debug" ]; then
+	# for the time being, at least, let's default to verbose
+	#if [ "$dbc_debug" ]; then
 		echo "$@." > /dev/stderr
-	fi
+	#fi
 	if [ "$dbc_log" ]; then
 		dbc_log="$dbc_log $@."
 	else