e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/log.c src/lib/log.c
index 16086fe..803fc56 100644
--- src/lib/log.c
+++ src/lib/log.c
@@ -1,18 +1,21 @@
 /* log.c - logging for servers, can log to a file and/or syslog.  Compile with
  * -DNO_SYSLOG for systems without syslog. */
 
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "log.h"
 #include "errabort.h"
 #include "dystring.h"
 #include "options.h"
 #include "portable.h"
 
 #ifndef NO_SYSLOG
 #include <syslog.h>
 #endif
 #include <time.h>
 
 
 static char *gProgram = "unknown";  /* name of program */
 static boolean gSysLogOn = FALSE;   /* syslog logging enabled? */