HADOOP-8296. hadoop/yarn daemonlog usage wrong (Devaraj K via tgraves)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1330445 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e99d9a764
commit
e84b552713
|
@ -378,6 +378,8 @@ Release 2.0.0 - UNRELEASED
|
|||
HADOOP-8314. HttpServer#hasAdminAccess should return false if
|
||||
authorization is enabled but user is not authenticated. (tucu)
|
||||
|
||||
HADOOP-8296. hadoop/yarn daemonlog usage wrong (Devaraj K via tgraves)
|
||||
|
||||
BREAKDOWN OF HADOOP-7454 SUBTASKS
|
||||
|
||||
HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)
|
||||
|
|
|
@ -36,11 +36,9 @@ import org.apache.hadoop.util.ServletUtil;
|
|||
*/
|
||||
@InterfaceStability.Evolving
|
||||
public class LogLevel {
|
||||
public static final String USAGES = "\nUSAGES:\n"
|
||||
+ "java " + LogLevel.class.getName()
|
||||
+ " -getlevel <host:port> <name>\n"
|
||||
+ "java " + LogLevel.class.getName()
|
||||
+ " -setlevel <host:port> <name> <level>\n";
|
||||
public static final String USAGES = "\nUsage: General options are:\n"
|
||||
+ "\t[-getlevel <host:httpPort> <name>]\n"
|
||||
+ "\t[-setlevel <host:httpPort> <name> <level>]\n";
|
||||
|
||||
/**
|
||||
* A command line implementation
|
||||
|
|
Loading…
Reference in New Issue