congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Start an intent from android
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
  • putExtra (Intent)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • JComboBox (javax.swing)
  • JTextField (javax.swing)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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