| java.lang.Object org.h2.message.TraceSystem
TraceSystem | public class TraceSystem (Code) | | The trace mechanism is the logging facility of this database. There is
usually one trace system per database. It is called 'trace' because the term
'log' is already used in the database domain and means 'transaction log'. It
is possible to write after close was called, but that means for each write
the log file will be opened and closed again (which is slower).
|
DEFAULT_TRACE_LEVEL_FILE | final public static int DEFAULT_TRACE_LEVEL_FILE(Code) | | |
DEFAULT_TRACE_LEVEL_SYSTEM_OUT | final public static int DEFAULT_TRACE_LEVEL_SYSTEM_OUT(Code) | | |
OFFERRORINFODEBUG | final public static int OFFERRORINFODEBUG(Code) | | |
TraceSystem | public TraceSystem(String fileName, boolean init)(Code) | | |
close | public void close()(Code) | | |
finalize | protected void finalize()(Code) | | |
getLevelFile | public int getLevelFile()(Code) | | |
getLevelSystemOut | public int getLevelSystemOut()(Code) | | |
getMaxFileSize | public int getMaxFileSize()(Code) | | |
isEnabled | public boolean isEnabled(int level)(Code) | | |
setLevelFile | public void setLevelFile(int l)(Code) | | |
setLevelSystemOut | public void setLevelSystemOut(int l)(Code) | | |
setManualEnabling | public void setManualEnabling(boolean value)(Code) | | |
setMaxFileSize | public void setMaxFileSize(int max)(Code) | | |
|
|