a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/verbose.c src/lib/verbose.c index c503335..b8b8be2 100644 --- src/lib/verbose.c +++ src/lib/verbose.c @@ -1,23 +1,22 @@ /* verbose.c - write out status messages according to the * current verbosity level. These messages go to stderr. */ #include "common.h" #include "portable.h" #include "verbose.h" -static char const rcsid[] = "$Id: verbose.c,v 1.7 2010/04/01 17:31:10 markd Exp $"; static int logVerbosity = 1; /* The level of log verbosity. 0 is silent. */ static FILE *logFile; /* File to log to. */ static boolean checkedDotsEnabled = FALSE; /* have we check for dot output * being enabled? */ static boolean dotsEnabled = FALSE; /* is dot output enabled? */ void verboseVa(int verbosity, char *format, va_list args) /* Log with at given verbosity vprintf formatted args. */ { if (verbosity <= logVerbosity) { if (logFile == NULL) logFile = stderr;