org.hibernate.internal.CoreMessageLogger Java Examples
The following examples show how to use
org.hibernate.internal.CoreMessageLogger.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Version.java From lams with GNU General Public License v2.0 | 4 votes |
/** * Logs the Hibernate version (using {@link #getVersionString()}) to the logging system. */ public static void logVersion() { Logger.getMessageLogger( CoreMessageLogger.class, Version.class.getName() ).version( getVersionString() ); }
Example #2
Source File: UpdateStatement.java From lams with GNU General Public License v2.0 | 4 votes |
@Override protected CoreMessageLogger getLog() { return LOG; }
Example #3
Source File: QueryNode.java From lams with GNU General Public License v2.0 | 4 votes |
@Override protected CoreMessageLogger getLog() { return LOG; }
Example #4
Source File: DeleteStatement.java From lams with GNU General Public License v2.0 | 4 votes |
@Override protected CoreMessageLogger getLog() { return LOG; }
Example #5
Source File: AbstractRestrictableStatement.java From lams with GNU General Public License v2.0 | votes |
protected abstract CoreMessageLogger getLog();