GERONIMO-3477 call to recoveryLog() was accidentally deleted during some code refactoring. It's needed for proper recovery of indoubt transactions. This appears to resolve the recovery issue

git-svn-id: https://svn.apache.org/repos/asf/geronimo/components/txmanager/trunk@578239 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java b/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java
index c99a9ef..f8b739e 100644
--- a/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java
+++ b/geronimo-transaction/src/main/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java
@@ -95,6 +95,7 @@
         }
 
         recovery = new RecoveryImpl(this.transactionLog, this.xidFactory);
+        recovery.recoverLog();
     }
 
     public Transaction getTransaction() {