Codota Logo
LoggerPlugin.fatal
Code IndexAdd Codota to your IDE (free)

How to use
fatal
method
in
org.jboss.logging.LoggerPlugin

Best Java code snippets using org.jboss.logging.LoggerPlugin.fatal (Showing top 4 results out of 315)

  • Common ways to obtain LoggerPlugin
private void myMethod () {
LoggerPlugin l =
  • Codota IconClass klass;(LoggerPlugin) klass.newInstance()
  • Smart code suggestions by Codota
}
origin: jboss.logging/jboss-logging-spi

/**
* Issue a log msg with a level of FATAL.
* Invokes log.log(Level.FATAL, message);
*/
public void fatal(Object message)
{
 loggerDelegate.fatal(message);
}
origin: jboss/jboss-logging-spi

/**
* Issue a log msg and throwable with a level of FATAL.
* 
* @param message the message
* @param t the throwable
*/
public void fatal(Object message, Throwable t)
{
 loggerDelegate.fatal(message, t);
}
origin: jboss/jboss-logging-spi

/**
* Issue a log msg with a level of FATAL.
* 
* @param message the message
*/
public void fatal(Object message)
{
 loggerDelegate.fatal(message);
}
origin: jboss.logging/jboss-logging-spi

/**
* Issue a log msg and throwable with a level of FATAL.
* Invokes log.log(Level.FATAL, message, t);
*/
public void fatal(Object message, Throwable t)
{
 loggerDelegate.fatal(message, t);
}
org.jboss.loggingLoggerPluginfatal

Javadoc

Issue a log msg with a level of FATAL.

Popular methods of LoggerPlugin

  • debug
    Issue a log msg and throwable with a level of DEBUG.
  • error
    Issue a log msg and throwable with a level of ERROR.
  • info
    Issue a log msg and throwable with a level of INFO.
  • init
    Initialise the logger with the given name
  • isDebugEnabled
    Check to see if the DEBUG level is enabled for this logger.
  • isInfoEnabled
    Check to see if the INFO level is enabled for this logger.
  • isTraceEnabled
    Check to see if the TRACE level is enabled for this logger.
  • trace
    Issue a log msg and throwable with a level of TRACE.
  • warn
    Issue a log msg and throwable with a level of WARN.
  • getInstance
    Get a logger plugin instance with the given name. The returned instance may be a cached or newly cre

Popular in Java

  • Making http requests using okhttp
  • putExtra (Intent)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • addToBackStack (FragmentTransaction)
  • InetAddress (java.net)
    This class represents an Internet Protocol (IP) address. An IP address is either a 32-bit or 128-bit
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
  • JFileChooser (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Join (org.hibernate.mapping)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now