Tabnine Logo
Logger.isInfoEnabled
Code IndexAdd Tabnine to your IDE (free)

How to use
isInfoEnabled
method
in
play.api.Logger

Best Java code snippets using play.api.Logger.isInfoEnabled (Showing top 8 results out of 315)

origin: com.typesafe.play/play_2.10

/**
 * Returns <code>true</code> if the logger instance has INFO level logging enabled.
 */
public boolean isInfoEnabled() {
  return logger.isInfoEnabled();
}
origin: com.typesafe.play/play_2.12

/**
 * Returns <code>true</code> if the logger instance has INFO level logging enabled.
 *
 * @return <code>true</code> if the logger instance has INFO level logging enabled.
 */
public boolean isInfoEnabled() {
  return logger.isInfoEnabled(noMarker);
}
origin: com.typesafe.play/play

/**
 * Returns <code>true</code> if the logger instance has INFO level logging enabled.
 *
 * @return <code>true</code> if the logger instance has INFO level logging enabled.
 */
public boolean isInfoEnabled() {
  return logger.isInfoEnabled(noMarker);
}
origin: com.typesafe.play/play_2.11

/**
 * Returns <code>true</code> if the logger instance has INFO level logging enabled.
 *
 * @return <code>true</code> if the logger instance has INFO level logging enabled.
 */
public boolean isInfoEnabled() {
  return logger.isInfoEnabled(noMarker);
}
origin: com.typesafe.play/play_2.11

/**
 * Similar to {@link #isInfoEnabled()} method except that the marker
 * data is also taken into consideration.
 *
 * @param marker The marker data to take into consideration
 * @return true if this logger is warn enabled, false otherwise
 */
public boolean isInfoEnabled(Marker marker) {
  return logger.isInfoEnabled(new DefaultMarkerContext(marker));
}
origin: com.typesafe.play/play_2.12

/**
 * Similar to {@link #isInfoEnabled()} method except that the marker
 * data is also taken into consideration.
 *
 * @param marker The marker data to take into consideration
 * @return true if this logger is warn enabled, false otherwise
 */
public boolean isInfoEnabled(Marker marker) {
  return logger.isInfoEnabled(new DefaultMarkerContext(marker));
}
origin: com.typesafe.play/play

/**
 * Similar to {@link #isInfoEnabled()} method except that the marker
 * data is also taken into consideration.
 *
 * @param marker The marker data to take into consideration
 * @return true if this logger is warn enabled, false otherwise
 */
public boolean isInfoEnabled(Marker marker) {
  return logger.isInfoEnabled(new DefaultMarkerContext(marker));
}
origin: com.sandinh/play-alone

/**
 * Returns <code>true</code> if the logger instance has INFO level logging enabled.
 *
 * @return <code>true</code> if the logger instance has INFO level logging enabled.
 */
public boolean isInfoEnabled() {
  return logger.isInfoEnabled();
}
play.apiLoggerisInfoEnabled

Popular methods of Logger

  • apply
  • isDebugEnabled
  • isTraceEnabled
  • isWarnEnabled
  • underlyingLogger
  • isErrorEnabled

Popular in Java

  • Reactive rest calls using spring rest template
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Kernel (java.awt.image)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now