Skip to main content

FlixelLogMode

View source

enum

org.flixelgdx.logging.FlixelLogMode

public final enum FlixelLogMode

An enum that defines the log modes for FlixelGDX's logging system. This is used to determine how the log messages should be displayed in the console.

Fields

SIMPLE

public static final FlixelLogMode SIMPLE

Provides a simple log output that only includes the location of the log call and the message. Great for people who are familiar with Haxe and its trace() function!


DETAILED

public static final FlixelLogMode DETAILED

Provides a more detailed log output that includes the time of the log call, class, line number, and method of the call. Great for advanced debugging purposes and people who like a more professional feel for their game!


Methods

values()

public static FlixelLogMode[] values()

valueOf(String)

public static FlixelLogMode valueOf(String name)