Inheritance: java.lang.Object, java.io.Serializable
Ejemplo n.º 1
0
 /// <summary>
 /// Set the log level specifying which message levels will be logged by this logger.
 /// </summary>
 public void setLevel(Level newLevel)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Log a message, specifying source class, method, and resource bundle name, with an array of object arguments.
 /// </summary>
 public void logrb(Level level, string sourceClass, string sourceMethod, string bundleName, string msg, object[] @params)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Log a message, specifying source class, method, and resource bundle name, with associated Throwable information.
 /// </summary>
 public void logrb(Level level, string sourceClass, string sourceMethod, string bundleName, string msg, Throwable thrown)
 {
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Log a message, specifying source class and method, with associated Throwable information.
 /// </summary>
 public void logp(Level level, string sourceClass, string sourceMethod, string msg, Throwable thrown)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Log a message, specifying source class, method, and resource bundle name with no arguments.
 /// </summary>
 public void logrb(Level level, string sourceClass, string sourceMethod, string bundleName, string msg)
 {
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Log a message, specifying source class and method, with no arguments.
 /// </summary>
 public void logp(Level level, string sourceClass, string sourceMethod, string msg)
 {
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Log a message, specifying source class and method, with an array of object arguments.
 /// </summary>
 public void logp(Level level, string sourceClass, string sourceMethod, string msg, object[] @params)
 {
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Log a message, with associated Throwable information.
 /// </summary>
 public void log(Level level, string msg, Throwable thrown)
 {
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Log a message, with an array of object arguments.
 /// </summary>
 public void log(Level level, string msg, object[] @params)
 {
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Log a message, with one object parameter.
 /// </summary>
 public void log(Level level, string msg, object param1)
 {
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Log a message, with no arguments.
 /// </summary>
 public void log(Level level, string msg)
 {
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Check if a message of the given level would actually be logged by this logger.
 /// </summary>
 public bool isLoggable(Level level)
 {
     return default(bool);
 }