本文整理汇总了Java中com.j256.ormlite.logger.Logger类的典型用法代码示例。如果您正苦于以下问题:Java Logger类的具体用法?Java Logger怎么用?Java Logger使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Logger类属于com.j256.ormlite.logger包,在下文中一共展示了Logger类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: clearSpecial
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
public boolean clearSpecial(DatabaseConnection paramDatabaseConnection, Logger paramLogger)
{
NestedConnection localNestedConnection = (NestedConnection)this.specialConnection.get();
if (paramDatabaseConnection != null)
{
if (localNestedConnection == null)
{
paramLogger.error("no connection has been saved when clear() called");
return false;
}
if (localNestedConnection.connection == paramDatabaseConnection)
{
if (localNestedConnection.decrementAndGet() == 0)
this.specialConnection.set(null);
return true;
}
paramLogger.error("connection saved {} is not the one being cleared {}", localNestedConnection.connection, paramDatabaseConnection);
}
return false;
}
示例2: makeConnection
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
/**
* Make a connection to the database.
*
* @param logger
* This is here so we can use the right logger associated with the sub-class.
*/
@SuppressWarnings("resource")
protected DatabaseConnection makeConnection(Logger logger) throws SQLException {
Properties properties = new Properties();
if (username != null) {
properties.setProperty("user", username);
}
if (password != null) {
properties.setProperty("password", password);
}
DatabaseConnection connection = new JdbcDatabaseConnection(DriverManager.getConnection(url, properties));
// by default auto-commit is set to true
connection.setAutoCommit(true);
if (connectionProxyFactory != null) {
connection = connectionProxyFactory.createProxy(connection);
}
logger.debug("opened connection to {} got #{}", url, connection.hashCode());
return connection;
}
示例3: clearSpecial
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
/**
* Clear the connection that was previously saved.
*
* @return True if the connection argument had been saved.
*/
protected boolean clearSpecial(DatabaseConnection connection, Logger logger) {
NestedConnection currentSaved = specialConnection.get();
boolean cleared = false;
if (connection == null) {
// ignored
} else if (currentSaved == null) {
logger.error("no connection has been saved when clear() called");
} else if (currentSaved.connection == connection) {
if (currentSaved.decrementAndGet() == 0) {
// we only clear the connection if nested counter is 0
specialConnection.set(null);
}
cleared = true;
} else {
logger.error("connection saved {} is not the one being cleared {}", currentSaved.connection, connection);
}
// release should then be called after clear
return cleared;
}
示例4: assignIdValue
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
private void assignIdValue(T paramT, Number paramNumber, String paramString, ObjectCache paramObjectCache)
{
this.idField.assignIdValue(paramT, paramNumber, paramObjectCache);
if (logger.isLevelEnabled(Log.Level.DEBUG))
{
Logger localLogger = logger;
Object[] arrayOfObject = new Object[4];
arrayOfObject[0] = paramNumber;
arrayOfObject[1] = paramString;
arrayOfObject[2] = this.idField.getFieldName();
arrayOfObject[3] = this.dataClassName;
localLogger.debug("assigned id '{}' from {} to '{}' in {} object", arrayOfObject);
}
}
示例5: getLogger
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
/**
* Get the logger for the class. We do this so we don't have to create it all of the time.
*/
private static Logger getLogger() {
if (logger == null) {
logger = LoggerFactory.getLogger(VersionUtils.class);
}
return logger;
}
示例6: getLogger
import com.j256.ormlite.logger.Logger; //导入依赖的package包/类
private static Logger getLogger()
{
if (logger == null)
logger = LoggerFactory.getLogger(VersionUtils.class);
return logger;
}