Class Log
- java.lang.Object
-
- com.logicaldoc.gui.common.client.log.Log
-
public class Log extends Object
Represents a client work session- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
debug(String message)
static void
error(String message, String detail, Throwable caught)
static void
info(String message)
static void
info(String message, String detail)
static void
serverError(String message, Throwable caught)
Logs a server error and shows a warning to the userstatic void
serverError(Throwable caught)
static void
warn(String message, String detail)
-
-
-
Method Detail
-
serverError
public static void serverError(Throwable caught)
-
serverError
public static void serverError(String message, Throwable caught)
Logs a server error and shows a warning to the user- Parameters:
message
- The message to be shown (optional)caught
- The caught exception (if any)
-
info
public static void info(String message)
-
debug
public static void debug(String message)
-
-