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

org.hibernate.tool.schema.SchemaToolingLogging Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
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 .
 */
package org.hibernate.tool.schema;

import org.jboss.logging.Logger;

/**
 * @author Steve Ebersole
 */
public class SchemaToolingLogging {
	public static final String LOGGER_NAME = "org.hibernate.orm.tooling.schema";
	public static final Logger LOGGER = Logger.getLogger( LOGGER_NAME );

	public static final String AST_LOGGER_NAME = LOGGER_NAME + ".AST";
	public static final Logger AST_LOGGER = Logger.getLogger( AST_LOGGER_NAME );

	public static final boolean TRACE_ENABLED = LOGGER.isTraceEnabled();
	public static final boolean DEBUG_ENABLED = LOGGER.isDebugEnabled();

	public static final boolean AST_TRACE_ENABLED = AST_LOGGER.isTraceEnabled();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy