public abstract class Log
extends Object
A very simple-minded logger.
-
Method Summary
Modifier and Type |
Method |
Description |
static void |
log(String message) |
Write a message to the log.
|
static void |
log(Throwable exception) |
Write an exception to the log.
|
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
public static void log(
String message)
Write a message to the log.
- Parameters:
message
- The message to write.
-
Write an exception to the log.
- Parameters:
exception
- The exception to write.