Package manifold.api.util
Class DebugLogUtil
- java.lang.Object
-
- manifold.api.util.DebugLogUtil
-
public class DebugLogUtil extends Object
-
-
Constructor Summary
Constructors Constructor Description DebugLogUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringgetStackTrace(Throwable e)static voidlog(String path, String msg)Log debug message to specified path/file.static voidlog(String path, String msg, boolean append)static voidlog(String path, Throwable t)Log exception stack trace to specified path/file.static voidlog(String path, Throwable t, boolean append)
-
-
-
Method Detail
-
log
public static void log(String path, String msg)
Log debug message to specified path/file. Note this is a last ditch logging effort for use-cases where logging to System.err/out or other means fails.
-
log
public static void log(String path, Throwable t)
Log exception stack trace to specified path/file. Note this is a last ditch logging effort for use-cases where logging to System.err/out or other means fails.
-
-