HHH-7699 Proper code formatting of log statements
This commit is contained in:
parent
a074d3244d
commit
e27afb8ded
|
@ -133,7 +133,8 @@ public class DriverManagerConnectionProviderImpl
|
||||||
LOG.autoCommitMode( autocommit );
|
LOG.autoCommitMode( autocommit );
|
||||||
|
|
||||||
isolation = ConfigurationHelper.getInteger( AvailableSettings.ISOLATION, configurationValues );
|
isolation = ConfigurationHelper.getInteger( AvailableSettings.ISOLATION, configurationValues );
|
||||||
if (isolation != null) LOG.jdbcIsolationLevel(Environment.isolationLevelToString(isolation.intValue()));
|
if ( isolation != null )
|
||||||
|
LOG.jdbcIsolationLevel( Environment.isolationLevelToString( isolation.intValue() ) );
|
||||||
|
|
||||||
url = (String) configurationValues.get( AvailableSettings.URL );
|
url = (String) configurationValues.get( AvailableSettings.URL );
|
||||||
if ( url == null ) {
|
if ( url == null ) {
|
||||||
|
|
Loading…
Reference in New Issue