Repository: tomee Updated Branches: refs/heads/master abbed04ac -> 5c981f9c8
too slow flush from idea, sorry for the noise Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/5c981f9c Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/5c981f9c Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/5c981f9c Branch: refs/heads/master Commit: 5c981f9c8275d6aaa465bee7ec33d467acf8ef83 Parents: abbed04 Author: Romain Manni-Bucau <[email protected]> Authored: Thu Jul 16 13:55:14 2015 +0200 Committer: Romain Manni-Bucau <[email protected]> Committed: Thu Jul 16 13:55:14 2015 +0200 ---------------------------------------------------------------------- .../openejb/resource/jdbc/managed/local/ManagedConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/5c981f9c/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java ---------------------------------------------------------------------- diff --git a/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java b/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java index 5fc283b..367699d 100644 --- a/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java +++ b/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java @@ -133,7 +133,7 @@ public class ManagedConnection implements InvocationHandler { setAutoCommit(false); } catch (final SQLException xae) { // we are alreay in a transaction so this can't be called from a user perspective - some XA DataSource prevents it in their code final String message = "Can't set auto commit to false cause the XA datasource doesn't support it, this is likely an issue"; - final Logger logger = Logger.getInstance(LogCategory.OPENEJB_RESOURCE_JDBC, ManagedConnection.class) + final Logger logger = Logger.getInstance(LogCategory.OPENEJB_RESOURCE_JDBC, ManagedConnection.class); if (logger.isDebugEnabled()) { // we don't want to print the exception by default logger.warning(message, xae); } else {
