--- hylafax-4.1/faxd/faxQueueApp.c++	Thu Sep 21 11:24:54 2000
+++ hylafax-4.1/faxd/faxQueueApp2y.c++	Sun Dec  2 20:42:23 2001
@@ -2405,7 +2405,7 @@
 	pokeScheduler();
 	return;				// NB: no return value expected
     case 'T':				// create new trigger 
-	traceServer("TRIGGER %s", args);
+	traceServer("TRIGGER: %s", args);
 	Trigger::create(id, args);
 	return;				// NB: trigger id returned specially
 
@@ -2414,38 +2414,38 @@
      * the client has included a return address.
      */
     case 'C':				// configuration control
-	traceServer("CONFIG %s", args);
+	traceServer("CONFIG: %s", args);
 	status = readConfigItem(args);
 	break;
     case 'D':				// cancel an existing trigger
-	traceServer("DELETE %s", args);
+	traceServer("DELETE: %s", args);
 	status = Trigger::cancel(args);
 	break;
     case 'R':				// remove job
-	traceServer("REMOVE JOB %s", args);
+	traceServer("REMOVE: JOB %s", args);
 	status = terminateJob(args, Job::removed);
 	break;
     case 'K':				// kill job
-	traceServer("KILL JOB %s", args);
+	traceServer("KILL: JOB %s", args);
 	status = terminateJob(args, Job::killed);
 	break;
     case 'S':				// submit an outbound job
-	traceServer("SUBMIT JOB %s", args);
+	traceServer("SUBMIT: JOB %s", args);
 	if (status = submitJob(args))
 	    pokeScheduler();
 	break;
     case 'U':				// unreference file
-	traceServer("UNREF DOC %s", args);
+	traceServer("UNREF: DOC %s", args);
 	unrefDoc(args);
 	status = true;
 	break;
     case 'X':				// suspend job
-	traceServer("SUSPEND JOB %s", args);
+	traceServer("SUSPEND: JOB %s", args);
 	if (status = suspendJob(args, false))
 	    pokeScheduler();
 	break;
     case 'Y':				// interrupt job
-	traceServer("INTERRUPT JOB %s", args);
+	traceServer("INTERRUPT: JOB %s", args);
 	if (status = suspendJob(args, true))
 	    pokeScheduler();
 	break;
