changeset 1252:e3ff7419590f

Added printing of project name into log file.
author neelin <neelin>
date Tue, 22 Feb 2000 00:06:34 +0000
parents 0fb70bf260c3
children 3ad0ab6f68f0
files conversion/gcomserver/reply.c
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/conversion/gcomserver/reply.c
+++ b/conversion/gcomserver/reply.c
@@ -5,7 +5,10 @@
 @CREATED    : November 22, 1993 (Peter Neelin)
 @MODIFIED   : 
  * $Log: reply.c,v $
- * Revision 6.3  2000-01-31 13:57:39  neelin
+ * Revision 6.4  2000-02-22 00:06:34  neelin
+ * Added printing of project name into log file.
+ *
+ * Revision 6.3  2000/01/31 13:57:39  neelin
  * Added keyword to project file to allow definition of the local AEtitle.
  * A simple syntax allows insertion of the host name into the AEtitle.
  *
@@ -340,6 +343,9 @@
    /* Get the project name from the volume name */
    *project_name = strdup(acr_find_string(group_list, SPI_Volume_name, ""));
 
+   /* Print out the project name */
+   (void) fprintf(stderr, "Requested project name is \"%s\"\n", *project_name);
+
    /* Create the reply */
    group_list = spi_reply(input_message);