Added MarcXchange support.
[yaz-moved-to-github.git] / src / log.c
index e8aa1a8..859ca3a 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -1,8 +1,8 @@
 /*
- * Copyright (c) 1995-2004, Index Data
+ * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: log.c,v 1.19 2004-12-30 00:11:00 adam Exp $
+ * $Id: log.c,v 1.21 2005-01-15 19:47:13 adam Exp $
  */
 
 /**
@@ -136,7 +136,13 @@ void yaz_log_reopen(void)
     if (!*l_fname)
        new_file = stderr;
     else if (!(new_file = fopen(l_fname, "a")))
+    {
+        new_file=l_file;
+        l_file=stderr;  /* just to be sure we don't rotate logs and recurse */
+        yaz_log(YLOG_WARN|YLOG_ERRNO,"Could not open log file '%s'",l_fname);
+        l_file=new_file; /* restore to old value, probably stderr as well */
         return;
+    }
     if (l_file != stderr)
     {
         fclose (l_file);