--- bin/mailmanctl.org	Sun Jul 15 15:53:41 2001
+++ bin/mailmanctl	Sun Jul 15 15:58:53 2001
@@ -133,11 +133,13 @@
         # Sent the master qrunner process a SIGINT, which is equivalent to
         # giving cron/qrunner a ctrl-c or KeyboardInterrupt.  This will
         # effectively shut everything down.
+        print 'Shutting down Mailman Qrunner'
         kill_subrunners(signal.SIGINT)
     elif command == 'restart':
         # Sent the master qrunner process a SIGHUP.  This will cause the
         # master qrunner to kill and restart all the worker qrunners, and to
         # close and re-open its log files.
+        print 'Restarting Mailman Qrunner'
         kill_subrunners(signal.SIGHUP)
     else:
         # Must be `start'
@@ -145,6 +147,7 @@
         # Daemon process startup according to Stevens, Advanced Programming in
         # the UNIX Environment, Chapter 13.
         if os.fork():
+            print 'Starting Mailman Qrunner'
             # parent
             sys.exit(0)
         # child
