Class GuiLog
- java.lang.Object
-
- com.logicaldoc.gui.common.client.log.GuiLog
-
public class GuiLog 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 voiddebug(String message)static voiderror(String message)static voiderror(String message, String detail, Throwable caught)static voidinfo(String message)static voidinfo(String message, String detail)static voidserverError(String message, Throwable caught)Logs a server error and shows a warning to the userstatic voidserverError(Throwable caught)static voidwarn(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)
-
error
public static void error(String message)
-
info
public static void info(String message)
-
debug
public static void debug(String message)
-
-