/** (C) Game Page Network, Inc., Confidential, All Rights Reserved */
// LogCommand.java
// --paul@gamepage.net, 21oct97

import java.util.*;

public class LogCommand extends Command {
  LogCommand() {
    super("log", -1, null,
	  "Log MESSAGE to the server.");
    anonymous = true;
  }

  public void process(StringTokenizer args, Client c) {
    Member current = c.getMember();
    Club.log("log: "+current+": "+
	     (args.hasMoreTokens() ? args.nextToken("\0") : ""));
  }
}

