All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.dialect.DialectLogging Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.dialect;

import org.hibernate.internal.log.SubSystemLogging;

import org.jboss.logging.Logger;
import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;
import org.jboss.logging.annotations.ValidIdRange;

import static org.jboss.logging.Logger.Level.DEBUG;

/**
 * Logging related to Hibernate dialects
 */
@SubSystemLogging(
		name = DialectLogging.LOGGER_NAME,
		description = "Logging related to the dialects of SQL implemented by particular RDBMS"
)
@ValidIdRange( min = 35001, max = 36000)
@MessageLogger(projectCode = "HHH")
public interface DialectLogging {
	String LOGGER_NAME = SubSystemLogging.BASE + ".dialect";
	Logger DIALECT_LOGGER = Logger.getLogger(LOGGER_NAME);
	DialectLogging DIALECT_MESSAGE_LOGGER = Logger.getMessageLogger(DialectLogging.class, LOGGER_NAME);

	@LogMessage(level = DEBUG)
	@Message(value = "Using dialect: %s", id = 35001)
	void usingDialect(Dialect dialect);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy