cz.mmsparams.api.utils.LogUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.utils;
import java.util.Arrays;
public class LogUtil
{
public static final String NEW_LINE = System.getProperty("line.separator");
public static final String LOG_LINE_SEPARATOR = "------------------------------------------------------\n";
public static final String HASHES = "#################################################################################################################################################";
private LogUtil()
{
}
public static String getCurrentStackTrace()
{
return Arrays.toString(Thread.currentThread().getStackTrace());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy