Log a debug message. Only works in debug mode. It starts with the current time + " -> LOG_DEBUG: "
Log an error message. It starts with the current time + " -> LOG_ERROR: "
Log an exception message. It starts with the current time + " -> LOG_EXCEPTION: "
Log an information message. It starts with the current time + " -> LOG_INFO: "
Returns true if Logger service is running.
Restart Logger service.
Start Logger service.
Stop Logger service.
Log a todo message. It starts with the current time + " -> LOG_TODO: "
Log a warning message. It starts with the current time + " -> LOG_WARNING: "
Strat service.
Strat service.
Strat service.
Strat service.
Logger.startService(); scope (exit) Logger.stopService(); Logger.console("Test message!"); Logger.info("Info test message!"); Logger.warning("Warning test message!"); Logger.error("Error test message!"); try { immutable int x = 5; if (x == 5) { throw new Exception("x cannot be 5!"); } } catch (Exception e) { Logger.exception("Exception test message!"); } Logger.todo("Todo test message!");