Package org.tmatesoft.sqljet.core
Class SqlJetLogDefinitions
- java.lang.Object
-
- org.tmatesoft.sqljet.core.SqlJetLogDefinitions
-
public class SqlJetLogDefinitions extends java.lang.Object
Definitions of properties names for SQLJet logging.
All these properties are boolean type and have "false" value by default.
Using as:
-DSQLJET_LOG_BTREE=true -DSQLJET_LOG_STACKTRACE=true.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
SQLJET_LOG_BTREE
Activates logging of b-tree operations.static java.lang.String
SQLJET_LOG_FILES
Activates logging of files operations.static java.lang.String
SQLJET_LOG_FILES_PERFORMANCE
Activates logging of files operations performance.static java.lang.String
SQLJET_LOG_PAGER
Activates logging of pager operations.static java.lang.String
SQLJET_LOG_SIGNED
Activates logging of signed values in operations with unsigned types.static java.lang.String
SQLJET_LOG_STACKTRACE
Activates logging of stack trace at each logging invocation.
-
Constructor Summary
Constructors Constructor Description SqlJetLogDefinitions()
-
-
-
Field Detail
-
SQLJET_LOG_FILES
public static final java.lang.String SQLJET_LOG_FILES
Activates logging of files operations.- See Also:
- Constant Field Values
-
SQLJET_LOG_FILES_PERFORMANCE
public static final java.lang.String SQLJET_LOG_FILES_PERFORMANCE
Activates logging of files operations performance.- See Also:
- Constant Field Values
-
SQLJET_LOG_PAGER
public static final java.lang.String SQLJET_LOG_PAGER
Activates logging of pager operations.- See Also:
- Constant Field Values
-
SQLJET_LOG_BTREE
public static final java.lang.String SQLJET_LOG_BTREE
Activates logging of b-tree operations.- See Also:
- Constant Field Values
-
SQLJET_LOG_SIGNED
public static final java.lang.String SQLJET_LOG_SIGNED
Activates logging of signed values in operations with unsigned types.- See Also:
- Constant Field Values
-
SQLJET_LOG_STACKTRACE
public static final java.lang.String SQLJET_LOG_STACKTRACE
Activates logging of stack trace at each logging invocation.- See Also:
- Constant Field Values
-
-