Class Raylib.TraceLogLevel

java.lang.Object
com.raylib.Raylib.TraceLogLevel
Enclosing class:
Raylib

public static class Raylib.TraceLogLevel extends Object
Trace log level
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Display all logs
    static final int
    Debug logging, used for internal debugging, it should be disabled on release builds
    static final int
    Error logging, used on unrecoverable failures
    static final int
    Fatal logging, used to abort program: exit(EXIT_FAILURE)
    static final int
    Info logging, used for program execution info
    static final int
    Disable logging
    static final int
    Trace logging, intended for internal use only
    static final int
    Warning logging, used on recoverable failures
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • LOG_ALL

      public static final int LOG_ALL
      Display all logs
      See Also:
    • LOG_TRACE

      public static final int LOG_TRACE
      Trace logging, intended for internal use only
      See Also:
    • LOG_DEBUG

      public static final int LOG_DEBUG
      Debug logging, used for internal debugging, it should be disabled on release builds
      See Also:
    • LOG_INFO

      public static final int LOG_INFO
      Info logging, used for program execution info
      See Also:
    • LOG_WARNING

      public static final int LOG_WARNING
      Warning logging, used on recoverable failures
      See Also:
    • LOG_ERROR

      public static final int LOG_ERROR
      Error logging, used on unrecoverable failures
      See Also:
    • LOG_FATAL

      public static final int LOG_FATAL
      Fatal logging, used to abort program: exit(EXIT_FAILURE)
      See Also:
    • LOG_NONE

      public static final int LOG_NONE
      Disable logging
      See Also:
  • Constructor Details

    • TraceLogLevel

      public TraceLogLevel()